aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu/i386/isa/nic3008.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1995-11-29 14:41:20 +0000
committerJulian Elischer <julian@FreeBSD.org>1995-11-29 14:41:20 +0000
commit7198bf4725543c8dfcb79b0e7cf38d97e5a6aa80 (patch)
tree82e0b24f955f894892cc1c396f300233c0d0607a /sys/gnu/i386/isa/nic3008.c
parentadb2dc299a21c0774a0d0fd9b914b59f2e332504 (diff)
If you're going to mechanically replicate something in 50 files
it's best to not have a (compiles cleanly) typo in it! (sigh)
Notes
Notes: svn path=/head/; revision=12521
Diffstat (limited to 'sys/gnu/i386/isa/nic3008.c')
-rw-r--r--sys/gnu/i386/isa/nic3008.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/gnu/i386/isa/nic3008.c b/sys/gnu/i386/isa/nic3008.c
index 09130033434b..a68513199261 100644
--- a/sys/gnu/i386/isa/nic3008.c
+++ b/sys/gnu/i386/isa/nic3008.c
@@ -1,6 +1,6 @@
-static char nic38_id[] = "@(#)$Id: nic3008.c,v 1.9 1995/11/21 14:56:01 bde Exp $";
+static char nic38_id[] = "@(#)$Id: nic3008.c,v 1.10 1995/11/29 10:47:04 julian Exp $";
/*******************************************************************************
- * II - Version 0.1 $Revision: 1.9 $ $State: Exp $
+ * II - Version 0.1 $Revision: 1.10 $ $State: Exp $
*
* Copyright 1994 Dietmar Friede
*******************************************************************************
@@ -10,6 +10,12 @@ static char nic38_id[] = "@(#)$Id: nic3008.c,v 1.9 1995/11/21 14:56:01 bde E
*
*******************************************************************************
* $Log: nic3008.c,v $
+ * Revision 1.10 1995/11/29 10:47:04 julian
+ * OK, that's it..
+ * That's EVERY SINGLE driver that has an entry in conf.c..
+ * my next trick will be to define cdevsw[] and bdevsw[]
+ * as empty arrays and remove all those DAMNED defines as well..
+ *
* Revision 1.9 1995/11/21 14:56:01 bde
* Completed function declarations, added prototypes and removed redundant
* declarations.
@@ -1243,8 +1249,8 @@ static void nic_drvinit(void *unused)
/* path name devsw minor type uid gid perm*/
"/", "nic", major(dev), 0, DV_CHR, 0, 0, 0600);
}
- }
#endif
+ }
}
SYSINIT(nicdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,nic_drvinit,NULL)