Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84423
b: refs/heads/master
c: c8b6de1
h: refs/heads/master
i:
  84421: 7c5a73e
  84419: b8e4f6d
  84415: 7cabf65
v: v3
  • Loading branch information
Linus Torvalds committed Feb 8, 2008
1 parent d15c8e6 commit cfa0b99
Show file tree
Hide file tree
Showing 20 changed files with 3,890 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8e31e607ea050c0df1483d8b6cdd5b1395c03cbe
refs/heads/master: c8b6de16d9434405e5832b8772e4f986ddd5118e
8 changes: 8 additions & 0 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2150,6 +2150,14 @@ M: acme@ghostprotocols.net
L: netdev@vger.kernel.org
S: Maintained

IPWIRELES DRIVER
P: Jiri Kosina
M: jkosina@suse.cz
P: David Sterba
M: dsterba@suse.cz
S: Maintained
T: git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git

IRDA SUBSYSTEM
P: Samuel Ortiz
M: samuel@sortiz.org
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void dump_thread(struct pt_regs * regs, struct user * dump)
if (dump->start_stack < TASK_SIZE)
dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT;

dump->u_ar0 = (struct user_regs_struct *)((int)&dump->regs - (int)dump);
dump->u_ar0 = offsetof(struct user, regs);
sw = ((struct switch_stack *)regs) - 1;
dump->regs.d1 = regs->d1;
dump->regs.d2 = regs->d2;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/asm-offsets.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ int main(void)
DEFINE(CLOCK_REALTIME, CLOCK_REALTIME);
DEFINE(CLOCK_MONOTONIC, CLOCK_MONOTONIC);
DEFINE(NSEC_PER_SEC, NSEC_PER_SEC);
DEFINE(CLOCK_REALTIME_RES, (KTIME_MONOTONIC_RES).tv64);
DEFINE(CLOCK_REALTIME_RES, MONOTONIC_RES_NSEC);

#ifdef CONFIG_BUG
DEFINE(BUG_ENTRY_SIZE, sizeof(struct bug_entry));
Expand Down
9 changes: 9 additions & 0 deletions trunk/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 trunk/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 trunk/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 cfa0b99

Please sign in to comment.