diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-10 01:34:09 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-10 01:34:09 +0000 |
commit | f4c7ec8de009e09634eb0390f5a19a2efd4a7472 (patch) | |
tree | 25e712eb41a0b15c25f0616a1326cfcf30fd3a7b /sys/arch/hp300/dev/sd.c | |
parent | 584c603b312f9885942192cafaf545ad68cd4d62 (diff) |
Support 16 partitions.
Diffstat (limited to 'sys/arch/hp300/dev/sd.c')
-rw-r--r-- | sys/arch/hp300/dev/sd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/dev/sd.c b/sys/arch/hp300/dev/sd.c index ecc87b4d639..d848472cfd2 100644 --- a/sys/arch/hp300/dev/sd.c +++ b/sys/arch/hp300/dev/sd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sd.c,v 1.7 1997/02/03 04:47:47 downsj Exp $ */ +/* $OpenBSD: sd.c,v 1.8 1997/02/10 01:33:57 downsj Exp $ */ /* $NetBSD: sd.c,v 1.29 1997/01/30 09:14:20 thorpej Exp $ */ /* @@ -1022,9 +1022,6 @@ sdioctl(dev, cmd, data, flag, p) int error, flags; switch (cmd) { - default: - return (EINVAL); - case DIOCGDINFO: *(struct disklabel *)data = *lp; return (0); @@ -1106,6 +1103,9 @@ sdioctl(dev, cmd, data, flag, p) */ bcopy(&sc->sc_sensestore, data, sizeof(sc->sc_sensestore)); return (0); + + default: + return (EINVAL); } /*NOTREACHED*/ |