diff options
author | David Brownell <david-b@pacbell.net> | 2006-05-30 23:49:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-21 18:04:15 -0400 |
commit | efcaa20525fde82bbb4fb8cd9e9016f6fabc6509 (patch) | |
tree | bdceb58add9793206e4af8a147fe5fccb9bad74d /drivers/usb | |
parent | d5ce1379be9c79d4bcf201c20c5cc87bb2bc973c (diff) |
[PATCH] USB: cdc_ether: recognize olympus r1000 (fix regression)
Earlier work splitting the "usbnet" driver out into a core plus driver
modules was missing a blacklist entry for the Olympus R-1000; it must
not use the CDC Ethernet driver, only the "zaurus" support works with
it.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/net/cdc_ether.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/usb/net/cdc_ether.c b/drivers/usb/net/cdc_ether.c index 63f1f3ba8e0b..9c6c5b0b01ad 100644 --- a/drivers/usb/net/cdc_ether.c +++ b/drivers/usb/net/cdc_ether.c | |||
@@ -455,6 +455,18 @@ static const struct usb_device_id products [] = { | |||
455 | .driver_info = 0, | 455 | .driver_info = 0, |
456 | }, | 456 | }, |
457 | 457 | ||
458 | /* Olympus has some models with a Zaurus-compatible option. | ||
459 | * R-1000 uses a FreeScale i.MXL cpu (ARMv4T) | ||
460 | */ | ||
461 | { | ||
462 | .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | ||
463 | | USB_DEVICE_ID_MATCH_DEVICE, | ||
464 | .idVendor = 0x07B4, | ||
465 | .idProduct = 0x0F02, /* R-1000 */ | ||
466 | ZAURUS_MASTER_INTERFACE, | ||
467 | .driver_info = 0, | ||
468 | }, | ||
469 | |||
458 | /* | 470 | /* |
459 | * WHITELIST!!! | 471 | * WHITELIST!!! |
460 | * | 472 | * |