diff options
author | Andrew Bird (Sphere Systems) <ajb@spheresystems.co.uk> | 2012-03-25 00:10:28 +0000 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2012-08-02 14:37:47 +0100 |
commit | e93afa13c1f85af4eb6c3ceb6d5f4f7ac11b86d2 (patch) | |
tree | 152715bc6ba309d6fd8196340227f0032942a0fc | |
parent | 91953dc518f589779c11f3774c6d7ca5b2bb86c6 (diff) | |
download | lwn-e93afa13c1f85af4eb6c3ceb6d5f4f7ac11b86d2.tar.gz lwn-e93afa13c1f85af4eb6c3ceb6d5f4f7ac11b86d2.zip |
USB: option: Ignore ZTE (Vodafone) K3570/71 net interfaces
commit f264ddea0109bf7ce8aab920d64a637e830ace5b upstream.
These interfaces need to be handled by QMI/WWAN driver
Signed-off-by: Andrew Bird <ajb@spheresystems.co.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r-- | drivers/usb/serial/option.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 5971c950e3a1..6d97d2fb4209 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -932,8 +932,10 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0165, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0167, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1010, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff), + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1010, 0xff, 0xff, 0xff), + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1012, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1057, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1058, 0xff, 0xff, 0xff) }, |