diff options
| author | mycroft <mycroft@NetBSD.org> | 2004-06-28 06:47:48 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 2004-06-28 06:47:48 +0000 |
| commit | f9fd558bdce45c4e69f9db76250e6e20fa568b84 (patch) | |
| tree | 1e1475df70c79c93255d53fbec8c78ff63e6169a /sys/dev/usb | |
| parent | 23e6f04707eea0aeb8b903e4188013f621c6d56d (diff) | |
Tracy's Clie reports that it's SFF-8070 when it's really UFI. Bah.
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/umass_quirks.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/sys/dev/usb/umass_quirks.c b/sys/dev/usb/umass_quirks.c index b586792e58e..8b64f2eb04b 100644 --- a/sys/dev/usb/umass_quirks.c +++ b/sys/dev/usb/umass_quirks.c @@ -1,4 +1,4 @@ -/* $NetBSD: umass_quirks.c,v 1.65 2004/06/25 13:23:55 mycroft Exp $ */ +/* $NetBSD: umass_quirks.c,v 1.66 2004/06/28 06:47:48 mycroft Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: umass_quirks.c,v 1.65 2004/06/25 13:23:55 mycroft Exp $"); +__KERNEL_RCSID(0, "$NetBSD: umass_quirks.c,v 1.66 2004/06/28 06:47:48 mycroft Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -133,7 +133,6 @@ Static const struct umass_quirk umass_quirks[] = { UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO, NULL, NULL }, - { { USB_VENDOR_SHUTTLE, USB_PRODUCT_SHUTTLE_ORCA }, UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC, UMASS_QUIRK_WRONG_CSWTAG, @@ -155,6 +154,18 @@ Static const struct umass_quirk umass_quirks[] = { }, /* + * Stupid device reports itself as SFF-8070, but actually returns a UFI + * interrupt descriptor. - mycroft, 2004/06/28 + */ + { { USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_40_MS }, + UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UFI, + 0, + 0, + UMATCH_VENDOR_PRODUCT, + NULL, NULL + }, + + /* * The DiskOnKey does not reject commands it doesn't recognize in a * sane way -- rather than STALLing the bulk pipe, it continually NAKs * until we time out. To prevent being screwed by this, for now we |
