diff options
Diffstat (limited to 'sys/gnu/isdn/iitty.c')
-rw-r--r-- | sys/gnu/isdn/iitty.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/gnu/isdn/iitty.c b/sys/gnu/isdn/iitty.c index bd39e83..573920d 100644 --- a/sys/gnu/isdn/iitty.c +++ b/sys/gnu/isdn/iitty.c @@ -1,6 +1,6 @@ -static char _ittyid[] = "@(#)$Id: iitty.c,v 1.12 1995/11/16 10:35:29 bde Exp $"; +static char _ittyid[] = "@(#)$Id: iitty.c,v 1.13 1995/11/29 10:47:09 julian Exp $"; /******************************************************************************* - * II - Version 0.1 $Revision: 1.12 $ $State: Exp $ + * II - Version 0.1 $Revision: 1.13 $ $State: Exp $ * * Copyright 1994 Dietmar Friede ******************************************************************************* @@ -10,6 +10,12 @@ static char _ittyid[] = "@(#)$Id: iitty.c,v 1.12 1995/11/16 10:35:29 bde Exp * ******************************************************************************* * $Log: iitty.c,v $ + * Revision 1.13 1995/11/29 10:47:09 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.12 1995/11/16 10:35:29 bde * Fixed the type of ity_input(). A trailing arg was missing. * @@ -482,8 +488,8 @@ static void ity_drvinit(void *unused) /* path name devsw minor type uid gid perm*/ "/", "ity", major(dev), 0, DV_CHR, 0, 0, 0600); } - } #endif + } } SYSINIT(itydev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,ity_drvinit,NULL) |