Skip to content

Commit 80083a3

Browse files
changcsdavem330
authored andcommitted
net: asix: add support for the Billionton GUSB2AM-1G-B USB adapter
Just another AX88178-based 10/100/1000 USB-to-Ethernet dongle. This one shows up in lsusb as: "ID 08dd:0114 Billionton Systems, Inc". Signed-off-by: Chia-Sheng Chang <changchias@gmail.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Luca Ceresoli <luca@lucaceresoli.net> Cc: Christoph Jaeger <cj@linux.com> Cc: "Woojung.Huh@microchip.com" <Woojung.Huh@microchip.com> Cc: Matthew Garrett <mjg59@srcf.ucam.org> Cc: Markus Elfring <elfring@users.sourceforge.net> Cc: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Cc: netdev@vger.kernel.org Cc: linux-usb@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent db65a3a commit 80083a3

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

drivers/net/usb/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ config USB_NET_AX8817X
164164
* Aten UC210T
165165
* ASIX AX88172
166166
* Billionton Systems, USB2AR
167+
* Billionton Systems, GUSB2AM-1G-B
167168
* Buffalo LUA-U2-KTX
168169
* Corega FEther USB2-TX
169170
* D-Link DUB-E100

drivers/net/usb/asix_devices.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -958,6 +958,10 @@ static const struct usb_device_id products [] = {
958958
// Billionton Systems, USB2AR
959959
USB_DEVICE (0x08dd, 0x90ff),
960960
.driver_info = (unsigned long) &ax8817x_info,
961+
}, {
962+
// Billionton Systems, GUSB2AM-1G-B
963+
USB_DEVICE(0x08dd, 0x0114),
964+
.driver_info = (unsigned long) &ax88178_info,
961965
}, {
962966
// ATEN UC210T
963967
USB_DEVICE (0x0557, 0x2009),

0 commit comments

Comments
 (0)