diff options
Diffstat (limited to 'sys/gnu/i386/isa/nic3009.c')
-rw-r--r-- | sys/gnu/i386/isa/nic3009.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/gnu/i386/isa/nic3009.c b/sys/gnu/i386/isa/nic3009.c index 083d50f..0a6fe04 100644 --- a/sys/gnu/i386/isa/nic3009.c +++ b/sys/gnu/i386/isa/nic3009.c @@ -1,6 +1,6 @@ -static char nic39_id[] = "@(#)$Id: nic3009.c,v 1.9 1995/11/21 14:56:02 bde Exp $"; +static char nic39_id[] = "@(#)$Id: nic3009.c,v 1.10 1995/11/29 10:47:05 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 nic39_id[] = "@(#)$Id: nic3009.c,v 1.9 1995/11/21 14:56:02 bde E * ******************************************************************************* * $Log: nic3009.c,v $ + * Revision 1.10 1995/11/29 10:47:05 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:02 bde * Completed function declarations, added prototypes and removed redundant * declarations. @@ -1306,8 +1312,8 @@ static void nnic_drvinit(void *unused) /* path name devsw minor type uid gid perm*/ "/", "nnic", major(dev), 0, DV_CHR, 0, 0, 0600); } - } #endif + } } SYSINIT(nnicdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,nnic_drvinit,NULL) |