Module Name:    src
Committed By:   jmcneill
Date:           Tue Aug  9 10:54:22 UTC 2011

Modified Files:
        src/sys/dev/i2c: lg3303.c xc3028.c

Log Message:
lg3303 should depend on dtv_math, not xc3028


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/i2c/lg3303.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/xc3028.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/i2c/lg3303.c
diff -u src/sys/dev/i2c/lg3303.c:1.6 src/sys/dev/i2c/lg3303.c:1.7
--- src/sys/dev/i2c/lg3303.c:1.6	Tue Aug  9 10:53:09 2011
+++ src/sys/dev/i2c/lg3303.c	Tue Aug  9 10:54:22 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: lg3303.c,v 1.6 2011/08/09 10:53:09 jmcneill Exp $ */
+/* $NetBSD: lg3303.c,v 1.7 2011/08/09 10:54:22 jmcneill Exp $ */
 
 /*-
  * Copyright 2007 Jason Harmening
@@ -28,7 +28,7 @@
  */
 
 #include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: lg3303.c,v 1.6 2011/08/09 10:53:09 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lg3303.c,v 1.7 2011/08/09 10:54:22 jmcneill Exp $");
 
 #include <sys/types.h>
 #include <sys/kmem.h>
@@ -351,7 +351,7 @@
 	return (buffer[0] << 8) | buffer[1];
 }
 
-MODULE(MODULE_CLASS_DRIVER, lg3303, NULL);
+MODULE(MODULE_CLASS_DRIVER, lg3303, "dtv_math");
 
 static int
 lg3303_modcmd(modcmd_t cmd, void *opaque)

Index: src/sys/dev/i2c/xc3028.c
diff -u src/sys/dev/i2c/xc3028.c:1.3 src/sys/dev/i2c/xc3028.c:1.4
--- src/sys/dev/i2c/xc3028.c:1.3	Tue Aug  9 01:42:24 2011
+++ src/sys/dev/i2c/xc3028.c	Tue Aug  9 10:54:22 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: xc3028.c,v 1.3 2011/08/09 01:42:24 jmcneill Exp $ */
+/* $NetBSD: xc3028.c,v 1.4 2011/08/09 10:54:22 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2011 Jared D. McNeill <jmcne...@invisible.ca>
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xc3028.c,v 1.3 2011/08/09 01:42:24 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xc3028.c,v 1.4 2011/08/09 10:54:22 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -564,7 +564,7 @@
 	return 0;
 }
 
-MODULE(MODULE_CLASS_DRIVER, xc3028, "dtv_math");
+MODULE(MODULE_CLASS_DRIVER, xc3028, NULL);
 
 static int
 xc3028_modcmd(modcmd_t cmd, void *opaque)

Reply via email to