diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/sd.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index 3bce2ac2ec5..49b59a83136 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sd.c,v 1.46 2000/10/13 17:55:00 mickey Exp $ */ +/* $OpenBSD: sd.c,v 1.47 2000/12/13 15:33:24 mickey Exp $ */ /* $NetBSD: sd.c,v 1.111 1997/04/02 02:29:41 mycroft Exp $ */ /*- @@ -82,10 +82,6 @@ #include <sys/vnode.h> -#ifndef SDOUTSTANDING -#define SDOUTSTANDING 4 -#endif - #define SDUNIT(dev) DISKUNIT(dev) #define SDMINOR(unit, part) DISKMINOR(unit, part) #define SDPART(dev) DISKPART(dev) @@ -184,8 +180,6 @@ sdattach(parent, self, aux) sd->type = (sa->sa_inqbuf->device & SID_TYPE); sc_link->device = &sd_switch; sc_link->device_softc = sd; - if (sc_link->openings > SDOUTSTANDING) - sc_link->openings = SDOUTSTANDING; /* * Initialize and attach the disk structure. |