diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-07-14 21:50:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-14 21:50:15 -0400 |
commit | e6c9116d1dc984cb7ecf1b0fe26ca4a8ab36bb57 (patch) | |
tree | 4097167cef775da1006b762f30ceff323ccf6071 /net/rfkill/rfkill-input.c | |
parent | 8d9107e8c50e1c4ff43c91c8841805833f3ecfb9 (diff) |
[RFKILL]: fix net/rfkill/rfkill-input.c bug on 64-bit systems
Subject: [patch] net/input: fix net/rfkill/rfkill-input.c bug on 64-bit systems
this recent commit:
commit cf4328cd949c2086091c62c5685f1580fe9b55e4
Author: Ivo van Doorn <IvDoorn@gmail.com>
Date: Mon May 7 00:34:20 2007 -0700
[NET]: rfkill: add support for input key to control wireless radio
added this 64-bit bug:
....
unsigned int flags;
spin_lock_irqsave(&task->lock, flags);
....
irq 'flags' must be unsigned long, not unsigned int. The -rt tree has
strict checks about this on 64-bit so this triggered a build failure.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rfkill/rfkill-input.c')
-rw-r--r-- | net/rfkill/rfkill-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rfkill/rfkill-input.c b/net/rfkill/rfkill-input.c index e5c840c30284..230e35c59786 100644 --- a/net/rfkill/rfkill-input.c +++ b/net/rfkill/rfkill-input.c | |||
@@ -55,7 +55,7 @@ static void rfkill_task_handler(struct work_struct *work) | |||
55 | 55 | ||
56 | static void rfkill_schedule_toggle(struct rfkill_task *task) | 56 | static void rfkill_schedule_toggle(struct rfkill_task *task) |
57 | { | 57 | { |
58 | unsigned int flags; | 58 | unsigned long flags; |
59 | 59 | ||
60 | spin_lock_irqsave(&task->lock, flags); | 60 | spin_lock_irqsave(&task->lock, flags); |
61 | 61 | ||