summaryrefslogtreecommitdiff
path: root/sys/scsi
diff options
context:
space:
mode:
authormjacob <mjacob@cvs.openbsd.org>2000-02-21 08:21:23 +0000
committermjacob <mjacob@cvs.openbsd.org>2000-02-21 08:21:23 +0000
commit1d3412b9698046cdfb0f3e463d954d2e3312ddc5 (patch)
tree0923e98d1ddf5b28493ef638024b49b5d939978a /sys/scsi
parent3418189d2f6d1143996481c19d5c604ef3caf0bd (diff)
add T_ENCLOSURE name and NOLUN Photon SENA devices
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/scsiconf.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c
index 33e21a78de9..44e610a6d14 100644
--- a/sys/scsi/scsiconf.c
+++ b/sys/scsi/scsiconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scsiconf.c,v 1.49 1999/12/31 20:24:05 millert Exp $ */
+/* $OpenBSD: scsiconf.c,v 1.50 2000/02/21 08:21:22 mjacob Exp $ */
/* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */
/*
@@ -517,6 +517,9 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = {
{{T_SCANNER, T_FIXED,
"UMAX ", "SuperVista S-12 ", "V1.9"}, SDEV_NOLUNS},
+ {{T_ENCLOSURE, T_FIXED,
+ "SUN ", "SENA", ""}, SDEV_NOLUNS},
+
/* ATAPI device quirks */
{{T_CDROM, T_REMOV,
"ALPS ELECTRIC CO.,LTD. DC544C", "", "SW03D"}, ADEV_NOTUR},
@@ -643,6 +646,9 @@ scsibusprint(aux, pnp)
case T_COMM:
dtype = "communication";
break;
+ case T_ENCLOSURE:
+ dtype = "enclosure services";
+ break;
case T_NODEVICE:
panic("scsibusprint: impossible device type");
default: