projects
/
openwrt
/
svn-archive
/
archive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87e56ff
)
fixes kernel oops when reset button was pressed too often on atheros
author
John Crispin
<john@openwrt.org>
Fri, 8 Aug 2008 14:12:04 +0000
(14:12 +0000)
committer
John Crispin
<john@openwrt.org>
Fri, 8 Aug 2008 14:12:04 +0000
(14:12 +0000)
SVN-Revision: 12245
target/linux/atheros/files/arch/mips/atheros/reset.c
patch
|
blob
|
history
diff --git
a/target/linux/atheros/files/arch/mips/atheros/reset.c
b/target/linux/atheros/files/arch/mips/atheros/reset.c
index a94954d091ab057b460f967b4df204af8897ae19..eb525da20793ebb71b400cc8fd836d876d538cc8 100644
(file)
--- a/
target/linux/atheros/files/arch/mips/atheros/reset.c
+++ b/
target/linux/atheros/files/arch/mips/atheros/reset.c
@@
-129,10
+129,8
@@
static irqreturn_t button_handler(int irq, void *dev_id)
seen = jiffies;
if(event->set && no_release_workaround)
- {
- rst_button_timer.expires = jiffies + (HZ / 4);
- add_timer(&rst_button_timer);
- }
+ mod_timer(&rst_button_timer, jiffies + (HZ / 4));
+
return IRQ_HANDLED;
}