Commit 6be83252 authored by David Brownell's avatar David Brownell Committed by David S. Miller

usbnet cdc_subset: fix issues talking to PXA gadgets

The host-side CDC subset driver is binding more specifically
than it should ... only to PXA 210/25x/26x Linux-USB gadgets.

Loosen that restriction to match the gadget driver driver.
This will various PXA 27x and PXA 3xx devices happier when
talking to Linux hosts, potentially others.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Tested-by: default avatarAric D. Blumer <aric@sdgsystems.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 83b462c6
...@@ -307,9 +307,10 @@ static const struct usb_device_id products [] = { ...@@ -307,9 +307,10 @@ static const struct usb_device_id products [] = {
USB_DEVICE (0x1286, 0x8001), // "blob" bootloader USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
.driver_info = (unsigned long) &blob_info, .driver_info = (unsigned long) &blob_info,
}, { }, {
// Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config // Linux Ethernet/RNDIS gadget, mostly on PXA, second config
// e.g. Gumstix, current OpenZaurus, ... // e.g. Gumstix, current OpenZaurus, ... or anything else
USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203), // that just enables this gadget option.
USB_DEVICE (0x0525, 0xa4a2),
.driver_info = (unsigned long) &linuxdev_info, .driver_info = (unsigned long) &linuxdev_info,
}, },
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment