summaryrefslogtreecommitdiff
path: root/sys/dev/i2c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2006-01-14 15:14:34 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2006-01-14 15:14:34 +0000
commitf83a64de348c2d1013a09e1230f2b64cb75c2f77 (patch)
treebd62ba58d13f948232fa0e60142985918a1106ff /sys/dev/i2c
parent56d66ee4aa47abf8364b55b921e2fbf164cc7f35 (diff)
Rename nslm7x.c into lm78.c and nslm7xvar.h into lm78var.h, and clean up
lm78var.h. Now that I've completely rewritten the driver, replace copyright with my own. suggested by deraadt@
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r--sys/dev/i2c/files.i2c4
-rw-r--r--sys/dev/i2c/lm_i2c.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/i2c/files.i2c b/sys/dev/i2c/files.i2c
index 30a3a46327d..cdc5f59fbbf 100644
--- a/sys/dev/i2c/files.i2c
+++ b/sys/dev/i2c/files.i2c
@@ -1,4 +1,4 @@
-# $OpenBSD: files.i2c,v 1.27 2006/01/13 23:56:46 grange Exp $
+# $OpenBSD: files.i2c,v 1.28 2006/01/14 15:14:33 kettenis Exp $
# $NetBSD: files.i2c,v 1.3 2003/10/20 16:24:10 briggs Exp $
define i2c {[addr = -1], [size = -1]}
@@ -84,7 +84,7 @@ device adt
attach adt at i2c
file dev/i2c/adt7460.c adt
-# National Semiconductor LM7[89] and compatible hardware monitors
+# National Semiconductor LM78/79/81 and compatible hardware monitors
attach lm at i2c with lm_i2c
file dev/i2c/lm_i2c.c lm_i2c
diff --git a/sys/dev/i2c/lm_i2c.c b/sys/dev/i2c/lm_i2c.c
index 5bdfadd0c36..bf826a5556d 100644
--- a/sys/dev/i2c/lm_i2c.c
+++ b/sys/dev/i2c/lm_i2c.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lm_i2c.c,v 1.6 2006/01/09 22:41:39 kettenis Exp $ */
+/* $OpenBSD: lm_i2c.c,v 1.7 2006/01/14 15:14:33 kettenis Exp $ */
/*
* Copyright (c) 2005 Mark Kettenis
@@ -24,7 +24,7 @@
#include <machine/bus.h>
#include <dev/i2c/i2cvar.h>
-#include <dev/ic/nslm7xvar.h>
+#include <dev/ic/lm78var.h>
struct lm_i2c_softc {
struct lm_softc sc_lmsc;