diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-08 01:51:44 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-08 01:51:44 +0000 |
commit | 456c30529286b2c869ca3a9ea646e456b34b7499 (patch) | |
tree | 38d6ec815a48a913eddd8a5e2286d82c15d80987 /sys/arch/i386 | |
parent | 5101cd1517f87a054f3041c0d83c68f26c105c48 (diff) |
reserve majors for isdn4bsd
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index de7bac17381..ab1c8d80f7c 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.55 1999/07/30 19:13:48 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.56 1999/08/08 01:51:43 niklas Exp $ */ /* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */ /* @@ -283,6 +283,13 @@ struct cdevsw cdevsw[] = cdev_midi_init(NSEQUENCER,sequencer), /* 53: sequencer I/O */ cdev_disk_init(NRAID,raid), /* 54: RAIDframe disk driver */ cdev_wdt_init(NWDT,wdt), /* 55: WDT50x watchdog timer */ + /* The following slots are reserved for isdn4bsd. */ + cdev_notdef(), /* 56: i4b main device */ + cdev_notdef(), /* 57: i4b control device */ + cdev_notdef(), /* 58: i4b raw b-channel access */ + cdev_notdef(), /* 59: i4b trace device */ + cdev_notdef(), /* 60: i4b phone device */ + /* End of reserved slots for isdn4bsd. */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |