Skip to content

Commit d0374f4

Browse files
jacmetgregkh
authored andcommitted
USB: Davicom DM9601 usbnet driver
This patch adds a driver for the Davicom DM9601 USB 1.1 10/100Mbps ethernet adaptor using the usbnet framework. See http://www.davicom.com.tw/eng/products/dm9601.htm for details. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: David Brownell <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 39c4b38 commit d0374f4

File tree

4 files changed

+623
-0
lines changed

4 files changed

+623
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3392,6 +3392,13 @@ L: [email protected]
33923392
S: Maintained
33933393
W: http://www.kroah.com/linux-usb/
33943394

3395+
USB DAVICOM DM9601 DRIVER
3396+
P: Peter Korsgaard
3397+
3398+
3399+
W: http://www.linux-usb.org/usbnet
3400+
S: Maintained
3401+
33953402
USB EHCI DRIVER
33963403
P: David Brownell
33973404

drivers/usb/net/Kconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,15 @@ config USB_NET_CDCETHER
186186
IEEE 802 "local assignment" bit is set in the address, a "usbX"
187187
name is used instead.
188188

189+
config USB_NET_DM9601
190+
tristate "Davicom DM9601 based USB 1.1 10/100 ethernet devices"
191+
depends on USB_USBNET
192+
select CRC32
193+
select USB_USBNET_MII
194+
help
195+
This option adds support for Davicom DM9601 based USB 1.1
196+
10/100 Ethernet adapters.
197+
189198
config USB_NET_GL620A
190199
tristate "GeneSys GL620USB-A based cables"
191200
depends on USB_USBNET

drivers/usb/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ obj-$(CONFIG_USB_PEGASUS) += pegasus.o
88
obj-$(CONFIG_USB_RTL8150) += rtl8150.o
99
obj-$(CONFIG_USB_NET_AX8817X) += asix.o
1010
obj-$(CONFIG_USB_NET_CDCETHER) += cdc_ether.o
11+
obj-$(CONFIG_USB_NET_DM9601) += dm9601.o
1112
obj-$(CONFIG_USB_NET_GL620A) += gl620a.o
1213
obj-$(CONFIG_USB_NET_NET1080) += net1080.o
1314
obj-$(CONFIG_USB_NET_PLUSB) += plusb.o

0 commit comments

Comments
 (0)