diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-05-04 09:16:05 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-05-04 09:16:05 +0000 |
commit | 8a19a997f66968fcd567b85ed0045db43b37cff9 (patch) | |
tree | 489bf437a7b1fb79d78912cfa937a0a890673a30 /sys | |
parent | 25e629de10f501d710b209aa6005a0646afadffa (diff) |
Add a SCSI scanner cdev entry
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amiga/amiga/conf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/amiga/amiga/conf.c b/sys/arch/amiga/amiga/conf.c index 1d65059f552..e9aebe8aef2 100644 --- a/sys/arch/amiga/amiga/conf.c +++ b/sys/arch/amiga/amiga/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.6 1996/05/02 06:43:13 niklas Exp $ */ +/* $OpenBSD: conf.c,v 1.7 1996/05/04 09:16:04 niklas Exp $ */ /* $NetBSD: conf.c,v 1.35 1996/04/27 20:48:50 veego Exp $ */ /*- @@ -139,6 +139,7 @@ struct cdevsw cdevsw[] = cdev_tty_init(NCOM,com), /* 32: ISA serial port */ cdev_lpt_init(NLPT,lpt), /* 33: ISA parallel printer */ cdev_gen_ipf(NIPF,ipl), /* 34: IP filter log */ + cdev_ss_init(NSS,ss), /* 35: SCSI scanner */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); @@ -258,9 +259,9 @@ chrtoblk(dev) * the standalone boot. I think it best that they both use the same * known algorithm unless we see a pressing need otherwise. */ -cons_decl(ser); -cons_decl(ite); cons_decl(com); +cons_decl(ite); +cons_decl(ser); struct consdev constab[] = { #if NSER > 0 |