diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-09 01:33:58 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-09 01:33:58 +0000 |
commit | 566ee064382c5f2cff1630c9aac66832d2b5aa91 (patch) | |
tree | 4bfcaaed408d4ed2c643bb5fd32da4243f7a1f10 /sys | |
parent | 7afb5c02e10a23c31dedb64968a0474bc708e26b (diff) |
Quirks for NEC 2Vi. I just had this play audio to me on the Amiga!
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/atapi/atapiconf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/atapi/atapiconf.c b/sys/dev/atapi/atapiconf.c index 2df3ed490e5..75f82b9b546 100644 --- a/sys/dev/atapi/atapiconf.c +++ b/sys/dev/atapi/atapiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiconf.c,v 1.6 1996/08/07 05:40:47 downsj Exp $ */ +/* $OpenBSD: atapiconf.c,v 1.7 1996/08/09 01:33:57 niklas Exp $ */ /* * Copyright (c) 1996 Manuel Bouyer. All rights reserved. @@ -99,6 +99,10 @@ struct atapi_quirk_inquiry_pattern atapi_quirk_inquiry_patterns[] = { {ATAPI_DEVICE_TYPE_CD, ATAPI_REMOVABLE, "GCD-R580B", "1.00", ADEV_LITTLETOC}, /* GoldStar 8X */ + {ATAPI_DEVICE_TYPE_DAD, ATAPI_REMOVABLE, + "NEC CD-ROM DRIVE:260", "3.04", ADEV_CDROM}, + /* NEC Multispin 2Vi */ + {0, 0, NULL, NULL, 0} /* The End */ }; |