diff options
author | 1999-05-11 23:41:37 +0000 | |
---|---|---|
committer | 1999-05-11 23:41:37 +0000 | |
commit | ace445a5010f44e8d3f330126e2138e5793be9a6 (patch) | |
tree | ed1f3264358edca519fc74939b186f00b72c32e1 | |
parent | generic trigger (diff) | |
download | wireguard-openbsd-ace445a5010f44e8d3f330126e2138e5793be9a6.tar.xz wireguard-openbsd-ace445a5010f44e8d3f330126e2138e5793be9a6.zip |
initialize generic quirks
-rw-r--r-- | sys/scsi/ss.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/scsi/ss.c b/sys/scsi/ss.c index 6fc3ec3bda5..f12dd9eaa7f 100644 --- a/sys/scsi/ss.c +++ b/sys/scsi/ss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ss.c,v 1.37 1999/05/11 23:25:43 kstailey Exp $ */ +/* $OpenBSD: ss.c,v 1.38 1999/05/11 23:41:37 kstailey Exp $ */ /* $NetBSD: ss.c,v 1.10 1996/05/05 19:52:55 christos Exp $ */ /* @@ -111,7 +111,11 @@ struct ss_quirk_inquiry_pattern { struct quirkdata quirkdata; }; -struct quirkdata ss_gen_quirks; +struct quirkdata ss_gen_quirks = { + "generic", 0, 40, 0, 0, 0, + {0, 0}, 0, 0, GENERIC_SCSI2, + NULL, NULL, NULL +}; void ssstrategy __P((struct buf *)); void ssstart __P((void *)); |