add hd routines
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 28 Oct 1987 10:47:21 +0000 (02:47 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Wed, 28 Oct 1987 10:47:21 +0000 (02:47 -0800)
SCCS-vsn: sys/tahoe/stand/conf.c 1.4

usr/src/sys/tahoe/stand/conf.c

index 68069a6..9290e8b 100644 (file)
@@ -1,4 +1,4 @@
-/*     conf.c  1.3     86/12/18        */
+/*     conf.c  1.4     87/10/27        */
 /*     conf.c  6.1     83/07/29        */
 
 #include "../machine/pte.h"
 /*     conf.c  6.1     83/07/29        */
 
 #include "../machine/pte.h"
@@ -72,11 +72,13 @@ noioctl(io, cmd, arg)
 
 int    udstrategy(), udopen();
 int    vdstrategy(), vdopen();
 
 int    udstrategy(), udopen();
 int    vdstrategy(), vdopen();
+int    hdstrategy(), hdopen();
 int    cystrategy(), cyopen(), cyclose();
 
 struct devsw devsw[] = {
        { "ud", udstrategy,     udopen,         nullsys,        noioctl },
        { "dk", vdstrategy,     vdopen,         nullsys,        noioctl },
 int    cystrategy(), cyopen(), cyclose();
 
 struct devsw devsw[] = {
        { "ud", udstrategy,     udopen,         nullsys,        noioctl },
        { "dk", vdstrategy,     vdopen,         nullsys,        noioctl },
+       { "hd", hdstrategy,     hdopen,         nullsys,        noioctl },
 #ifdef notdef
        { "xp", xpstrategy,     xpopen,         nullsys,        noioctl },
 #else
 #ifdef notdef
        { "xp", xpstrategy,     xpopen,         nullsys,        noioctl },
 #else