diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-17 22:00:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-17 22:00:05 +0000 |
commit | 581c9d45f651d2c40755c920da5dc637753a7734 (patch) | |
tree | e4a221ba3a82651e4a55e96a8ad6e2530b2d8315 /sys/dev/atapi | |
parent | 654eca43fdd958b2fd77d340fca2b661d451c62a (diff) |
Add quirk for MATSHITA CR-574, from Berndt Josef Wulf <wulf@ping.net.au>
Diffstat (limited to 'sys/dev/atapi')
-rw-r--r-- | sys/dev/atapi/atapiconf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/atapi/atapiconf.c b/sys/dev/atapi/atapiconf.c index 224bdc84048..8ef001a1efb 100644 --- a/sys/dev/atapi/atapiconf.c +++ b/sys/dev/atapi/atapiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiconf.c,v 1.16 1997/07/07 19:48:50 niklas Exp $ */ +/* $OpenBSD: atapiconf.c,v 1.17 1997/08/17 22:00:04 millert Exp $ */ /* * Copyright (c) 1996 Manuel Bouyer. All rights reserved. @@ -96,6 +96,9 @@ struct atapi_quirk_inquiry_pattern atapi_quirk_inquiry_patterns[] = { /* GoldStar 8X */ {ATAPI_DEVICE_TYPE_CD, ATAPI_REMOVABLE, "GCD-R580B", "1.00", AQUIRK_LITTLETOC}, + /* MATSHITA CR-574 */ + {ATAPI_DEVICE_TYPE_CD, ATAPI_REMOVABLE, + "MATSHITA CR-574", "1.06", AQUIRK_NOCAPACITY}, /* NEC Multispin 2Vi */ {ATAPI_DEVICE_TYPE_DAD, ATAPI_REMOVABLE, "NEC CD-ROM DRIVE:260", "3.04", AQUIRK_CDROM}, |