diff options
Diffstat (limited to 'sys/dev/dgb/dgb.c')
-rw-r--r-- | sys/dev/dgb/dgb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c index 8187b44..f293977 100644 --- a/sys/dev/dgb/dgb.c +++ b/sys/dev/dgb/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.9 1995/12/07 12:45:18 davidg Exp $ + * dgb.c $Id: dgb.c,v 1.10 1995/12/08 11:12:42 julian Exp $ * * Digiboard driver. * @@ -204,7 +204,7 @@ static d_stop_t dgbstop; static d_ttycv_t dgbdevtotty; #define CDEV_MAJOR 58 -struct cdevsw dgb_cdevsw = +static struct cdevsw dgb_cdevsw = { dgbopen, dgbclose, dgbread, dgbwrite, /*58*/ dgbioctl, dgbstop, nxreset, dgbdevtotty, /* dgb */ ttselect, nommap, NULL, "dgb", NULL, -1 }; |