mirror of https://gitee.com/openkylin/linux.git
nozomi driver
This is a driver to control the cardbus wireless data card that works on 3g networks. Greg Kroah-Hartman <gregkh@suse.de> did the initial driver cleanup. Thanks to Arnaud Patard <apatard@mandriva.com> for help with bugfixing. Thanks to Alan Cox for a lot of tty fixes. Thanks to Satyam Sharma <satyam@infradead.org> for fixing buildbreakage. Thanks to Frank Seidel <fseidel@suse.de> for a lot of bugfixes and rewriting to make it a sane Linux driver Thanks to Jiri Slaby <jirislaby@gmail.com> for a lot bugfixes, cleanups and rewrites that make it much more readable. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Frank Seidel <fseidel@suse.de> Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
This commit is contained in:
parent
9fd5b1c906
commit
20fd1e3bea
|
@ -373,6 +373,16 @@ config ISTALLION
|
||||||
To compile this driver as a module, choose M here: the
|
To compile this driver as a module, choose M here: the
|
||||||
module will be called istallion.
|
module will be called istallion.
|
||||||
|
|
||||||
|
config NOZOMI
|
||||||
|
tristate "HSDPA Broadband Wireless Data Card - Globe Trotter"
|
||||||
|
depends on PCI && EXPERIMENTAL
|
||||||
|
help
|
||||||
|
If you have a HSDPA driver Broadband Wireless Data Card -
|
||||||
|
Globe Trotter PCMCIA card, say Y here.
|
||||||
|
|
||||||
|
To compile this driver as a module, choose M here, the module
|
||||||
|
will be called nozomi.
|
||||||
|
|
||||||
config A2232
|
config A2232
|
||||||
tristate "Commodore A2232 serial support (EXPERIMENTAL)"
|
tristate "Commodore A2232 serial support (EXPERIMENTAL)"
|
||||||
depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP
|
depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP
|
||||||
|
|
|
@ -26,6 +26,7 @@ obj-$(CONFIG_SERIAL167) += serial167.o
|
||||||
obj-$(CONFIG_CYCLADES) += cyclades.o
|
obj-$(CONFIG_CYCLADES) += cyclades.o
|
||||||
obj-$(CONFIG_STALLION) += stallion.o
|
obj-$(CONFIG_STALLION) += stallion.o
|
||||||
obj-$(CONFIG_ISTALLION) += istallion.o
|
obj-$(CONFIG_ISTALLION) += istallion.o
|
||||||
|
obj-$(CONFIG_NOZOMI) += nozomi.o
|
||||||
obj-$(CONFIG_DIGIEPCA) += epca.o
|
obj-$(CONFIG_DIGIEPCA) += epca.o
|
||||||
obj-$(CONFIG_SPECIALIX) += specialix.o
|
obj-$(CONFIG_SPECIALIX) += specialix.o
|
||||||
obj-$(CONFIG_MOXA_INTELLIO) += moxa.o
|
obj-$(CONFIG_MOXA_INTELLIO) += moxa.o
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue