diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
commit | 595cbd2e050401adf0cab2bab6ce52f902dfbb54 (patch) | |
tree | 8474c159022572bb93d15b7f2c287d1044321bc1 /sys/arch/vax/boot/conf.c | |
parent | 3472e7ae763d3e453e57b218243b6d60ece25b43 (diff) |
sync w/ 0430
Diffstat (limited to 'sys/arch/vax/boot/conf.c')
-rw-r--r-- | sys/arch/vax/boot/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/vax/boot/conf.c b/sys/arch/vax/boot/conf.c index 15236d763df..f516c4d2c3a 100644 --- a/sys/arch/vax/boot/conf.c +++ b/sys/arch/vax/boot/conf.c @@ -1,4 +1,4 @@ -/* $NetBSD: conf.c,v 1.4 1995/09/16 13:18:28 ragge Exp $ */ +/* $NetBSD: conf.c,v 1.5 1996/02/17 18:23:18 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden. * All rights reserved. @@ -40,6 +40,7 @@ int raopen(), rastrategy(); int hpopen(), hpstrategy(); +int ctuopen(), ctustrategy(); int tmscpopen(), tmscpstrategy(); struct devsw devsw[]={ @@ -51,7 +52,7 @@ struct devsw devsw[]={ SADEV("tm",nullsys, nodev, nullsys, noioctl), SADEV("ts",nullsys, nodev, nullsys, noioctl), SADEV("mt",nullsys, nodev, nullsys, noioctl), - SADEV("tu",nullsys, nodev, nullsys, noioctl), + SADEV("ctu",ctustrategy, ctuopen, nullsys, noioctl), SADEV("ra",rastrategy, raopen, nullsys, noioctl), SADEV("ut",nullsys, nodev, nullsys, noioctl), SADEV("id",nullsys, nodev, nullsys, noioctl), |