diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2000-04-09 21:08:27 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2000-04-09 21:08:27 +0000 |
commit | 4763f87d953178f3fc702bb9686f9aad5ae95df7 (patch) | |
tree | 59ffc5fbb6118ad643ab474118570b87f87e0d0c /sys/arch/i386 | |
parent | bfaf74ccc8bc2a76c15b21554cf5468cf48a1792 (diff) |
fix ulpt major # allocation
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index f5b74afd8a7..e0b5252644d 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.58 2000/02/21 08:15:32 mjacob Exp $ */ +/* $OpenBSD: conf.c,v 1.59 2000/04/09 21:07:46 matthieu Exp $ */ /* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */ /* @@ -200,6 +200,8 @@ cdev_decl(usb); cdev_decl(uhid); #include "ugen.h" cdev_decl(ugen); +#include "ulpt.h" +cdev_decl(ulpt); #ifdef IPFILTER #define NIPF 1 @@ -300,6 +302,7 @@ struct cdevsw cdevsw[] = cdev_usb_init(NUSB,usb), /* 61: USB controller */ cdev_usbdev_init(NUHID,uhid), /* 62: USB generic HID */ cdev_ugen_init(NUGEN,ugen), /* 63: USB generic driver */ + cdev_ulpt_init(NULPT,ulpt), /* 64: USB printers */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |