Skip to content

Commit

Permalink
ipwireless: driver for PC Card 3G/UMTS modem
Browse files Browse the repository at this point in the history
The device is manufactured by IPWireless.  In some countries (for
example Czech Republic, T-Mobile ISP) this card is shipped for service
called UMTS 4G.

It's a piece of PCMCIA "4G" UMTS PPP networking hardware that presents
itself as a serial character device (i.e.  looks like usual modem to
userspace, accepts AT commands, etc).

Rewieved-by: Jiri Slaby <[email protected]>
Signed-off-by: Ben Martel <[email protected]>
Signed-off-by: Stephen Blackheath <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
kdave authored and Linus Torvalds committed Feb 8, 2008
1 parent 151db1f commit 099dc4f
Show file tree
Hide file tree
Showing 13 changed files with 3,862 additions and 0 deletions.
8 changes: 8 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2150,6 +2150,14 @@ M: [email protected]
L: [email protected]
S: Maintained

IPWIRELES DRIVER
P: Jiri Kosina
M: [email protected]
P: David Sterba
M: [email protected]
S: Maintained
T: git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git

IRDA SUBSYSTEM
P: Samuel Ortiz
M: [email protected]
Expand Down
9 changes: 9 additions & 0 deletions drivers/char/pcmcia/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,14 @@ config CARDMAN_4040
(http://www.omnikey.com/), or a current development version of OpenCT
(http://www.opensc.org/).

config IPWIRELESS
tristate "IPWireless 3G UMTS PCMCIA card support"
depends on PCMCIA
select PPP
help
This is a driver for 3G UMTS PCMCIA card from IPWireless company. In
some countries (for example Czech Republic, T-Mobile ISP) this card
is shipped for service called UMTS 4G.

endmenu

2 changes: 2 additions & 0 deletions drivers/char/pcmcia/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# Makefile for the Linux PCMCIA char device drivers.
#

obj-y += ipwireless/

obj-$(CONFIG_SYNCLINK_CS) += synclink_cs.o
obj-$(CONFIG_CARDMAN_4000) += cm4000_cs.o
obj-$(CONFIG_CARDMAN_4040) += cm4040_cs.o
10 changes: 10 additions & 0 deletions drivers/char/pcmcia/ipwireless/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# drivers/char/pcmcia/ipwireless/Makefile
#
# Makefile for the IPWireless driver
#

obj-$(CONFIG_IPWIRELESS) += ipwireless.o

ipwireless-objs := hardware.o main.o network.o tty.o

Loading

0 comments on commit 099dc4f

Please sign in to comment.