diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-30 15:24:08 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-30 15:24:08 +0000 |
commit | 2c859686c0183d3349fd59eea4d0b94042c2e57c (patch) | |
tree | 263765a11a9e36f7a43ecbce811bedf7158f3e00 /sys/arch/vax | |
parent | 31d435bde20ef5d8d503bea682646c810fec14aa (diff) |
Plug holes in cdevsw[] to make vscsi, diskmap and pppx entries match the
numbers in comments and the MAKEDEV majors.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/conf.c b/sys/arch/vax/vax/conf.c index b59e49dd43b..3744271b5b3 100644 --- a/sys/arch/vax/vax/conf.c +++ b/sys/arch/vax/vax/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.62 2011/01/14 19:04:08 jasper Exp $ */ +/* $OpenBSD: conf.c,v 1.63 2011/04/30 15:24:07 miod Exp $ */ /* $NetBSD: conf.c,v 1.44 1999/10/27 16:38:54 ragge Exp $ */ /*- @@ -439,6 +439,8 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 74 */ #endif cdev_ptm_init(NPTY,ptm), /* 75: pseudo-tty ptm device */ + cdev_notdef(), /* 76 */ + cdev_notdef(), /* 77 */ cdev_vscsi_init(NVSCSI,vscsi), /* 78: vscsi */ cdev_disk_init(1,diskmap), /* 79: disk mapper */ cdev_pppx_init(NPPPX,pppx), /* 80: pppx */ |