diff options
author | Quinlan Pfiffer <qpfiffer@gmail.com> | 2012-09-28 19:58:44 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-13 05:50:33 +0900 |
commit | 93bfa6e4dade09e6b92a84990f479c3d59a69e14 (patch) | |
tree | 377e765892e3412c35ea6a23680df0f757cd5af0 | |
parent | df953f991735380b44bdc995c6b4c7bef3618b66 (diff) |
asix: Adds support for Lenovo 10/100 USB dongle.
commit 66dc81ecd71332783c92fb170950d5ddb43da461 upstream.
This dongle ships with the X1 Carbon, and has an AX88772B
usb to ethernet chip in it.
Signed-off-by: Quinlan Pfiffer <qpfiffer@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/net/usb/asix_devices.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/usb/asix_devices.c b/drivers/net/usb/asix_devices.c index 32e31c5c5dc..f778aa073ec 100644 --- a/drivers/net/usb/asix_devices.c +++ b/drivers/net/usb/asix_devices.c @@ -930,6 +930,10 @@ static const struct usb_device_id products [] = { USB_DEVICE (0x04f1, 0x3008), .driver_info = (unsigned long) &ax8817x_info, }, { + // Lenovo U2L100P 10/100 + USB_DEVICE (0x17ef, 0x7203), + .driver_info = (unsigned long) &ax88772_info, +}, { // ASIX AX88772B 10/100 USB_DEVICE (0x0b95, 0x772b), .driver_info = (unsigned long) &ax88772_info, |