Skip to content

Commit 72dc1c0

Browse files
gregkhJeff Garzik
authored andcommitted
HSO: add option hso driver
This driver is for a number of different Option devices. Originally written by Option and Andrew Bird, but cleaned up massivly for acceptance into mainline by me and others. Many thanks to the following for their help in cleaning up the driver by providing feedback and patches to it: - Paulius Zaleckas <[email protected]> - Oliver Neukum <[email protected]> - Alan Cox <[email protected]> - Javier Marcet <[email protected]> Cc: Andrew Bird <[email protected]> Cc: Javier Marcet <[email protected]> Cc: Filip Aben <[email protected]> Cc: Paulius Zaleckas <[email protected]> Cc: Oliver Neukum <[email protected]> Acked-by: Alan Cox <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
1 parent 44f74c0 commit 72dc1c0

File tree

4 files changed

+2848
-0
lines changed

4 files changed

+2848
-0
lines changed

drivers/net/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ obj-$(CONFIG_USB_CATC) += usb/
237237
obj-$(CONFIG_USB_KAWETH) += usb/
238238
obj-$(CONFIG_USB_PEGASUS) += usb/
239239
obj-$(CONFIG_USB_RTL8150) += usb/
240+
obj-$(CONFIG_USB_HSO) += usb/
240241
obj-$(CONFIG_USB_USBNET) += usb/
241242
obj-$(CONFIG_USB_ZD1201) += usb/
242243

drivers/net/usb/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,16 @@ config USB_NET_AX8817X
154154
This driver creates an interface named "ethX", where X depends on
155155
what other networking devices you have in use.
156156

157+
config USB_HSO
158+
tristate "Option USB High Speed Mobile Devices"
159+
depends on USB && RFKILL
160+
default n
161+
help
162+
Choose this option if you have an Option HSDPA/HSUPA card.
163+
These cards support downlink speeds of 7.2Mbps or greater.
164+
165+
To compile this driver as a module, choose M here: the
166+
module will be called hso.
157167

158168
config USB_NET_CDCETHER
159169
tristate "CDC Ethernet support (smart devices such as cable modems)"

drivers/net/usb/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ obj-$(CONFIG_USB_CATC) += catc.o
66
obj-$(CONFIG_USB_KAWETH) += kaweth.o
77
obj-$(CONFIG_USB_PEGASUS) += pegasus.o
88
obj-$(CONFIG_USB_RTL8150) += rtl8150.o
9+
obj-$(CONFIG_USB_HSO) += hso.o
910
obj-$(CONFIG_USB_NET_AX8817X) += asix.o
1011
obj-$(CONFIG_USB_NET_CDCETHER) += cdc_ether.o
1112
obj-$(CONFIG_USB_NET_DM9601) += dm9601.o

0 commit comments

Comments
 (0)