diff options
author | nsouch <nsouch@FreeBSD.org> | 1998-09-04 17:53:42 +0000 |
---|---|---|
committer | nsouch <nsouch@FreeBSD.org> | 1998-09-04 17:53:42 +0000 |
commit | 742fe357a3e83288880ecf1af6e9eb9cae89e62b (patch) | |
tree | 8bce14f009c006b2856f1bf05308614e92fb233c /sys/dev/smbus | |
parent | 5592ace7c53a51b5ad7f2379b7970f1c5d8898ed (diff) | |
download | FreeBSD-src-742fe357a3e83288880ecf1af6e9eb9cae89e62b.zip FreeBSD-src-742fe357a3e83288880ecf1af6e9eb9cae89e62b.tar.gz |
Device registration temporaly removed until major number allocation ok.
Diffstat (limited to 'sys/dev/smbus')
-rw-r--r-- | sys/dev/smbus/smb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/smbus/smb.c b/sys/dev/smbus/smb.c index 5a19dcb..de6e0fd 100644 --- a/sys/dev/smbus/smb.c +++ b/sys/dev/smbus/smb.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: smb.c,v 1.1.2.1 1998/08/13 15:15:19 son Exp $ + * $Id: smb.c,v 1.1.1.1 1998/09/03 20:52:53 nsouch Exp $ * */ #include <sys/param.h> @@ -284,4 +284,6 @@ smb_drvinit(void *unused) CDEV_DRIVER_MODULE(smb, smbus, smb_driver, smb_devclass, CDEV_MAJOR, smb_cdevsw, 0, 0); +#if 0 SYSINIT(smbdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,smb_drvinit,NULL) +#endif |