diff options
| author | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
| commit | a8931ef380c92d121ae74ecfb03b2d63f72eea6f (patch) | |
| tree | 980fb6b019e11e6cb1ece55b7faff184721a8053 /drivers/net/usb/asix.c | |
| parent | 90574d0a4d4b73308ae54a2a57a4f3f1fa98e984 (diff) | |
| parent | e5a5816f7875207cb0a0a7032e39a4686c5e10a4 (diff) | |
| download | olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.tar.xz olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'drivers/net/usb/asix.c')
| -rw-r--r-- | drivers/net/usb/asix.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index 6f245cfb662..37ecf845edf 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -1381,6 +1381,10 @@ static const struct usb_device_id	products [] = {  	USB_DEVICE (0x0411, 0x003d),  	.driver_info =  (unsigned long) &ax8817x_info,  }, { +	// Buffalo LUA-U2-GT 10/100/1000 +	USB_DEVICE (0x0411, 0x006e), +	.driver_info =  (unsigned long) &ax88178_info, +}, {  	// Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"  	USB_DEVICE (0x6189, 0x182d),  	.driver_info =  (unsigned long) &ax8817x_info, @@ -1436,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  };  |