diff options
author | Aurelien Nephtali <[email protected]> | 2008-05-14 17:04:13 -0700 |
---|---|---|
committer | Jeff Garzik <[email protected]> | 2008-05-22 06:19:30 -0400 |
commit | 3d60efb55f634e200fd99e0960a8e099fb38446a (patch) | |
tree | cdf1f5abfb7dad5049a54f6c318c018f29a38af0 | |
parent | 7fa0cba330af3a24f43ac85e14b0b5fed557cdab (diff) |
net/usb: add support for Apple USB Ethernet Adapter
Add support for Apple USB Ethernet Adapter.
http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?nplm=MB442Z/A
Signed-off-by: Aurelien Nephtali <[email protected]>
Acked-by: Greg KH <[email protected]>
Cc: David Brownell <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
-rw-r--r-- | drivers/net/usb/asix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index dc6f097062df..37ecf845edfe 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -1440,6 +1440,10 @@ static const struct usb_device_id products [] = { // Belkin F5D5055 USB_DEVICE(0x050d, 0x5055), .driver_info = (unsigned long) &ax88178_info, +}, { + // Apple USB Ethernet Adapter + USB_DEVICE(0x05ac, 0x1402), + .driver_info = (unsigned long) &ax88772_info, }, { }, // END }; |