projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3aae994
)
genirq: Do not fiddle with IRQ_MASKED in handle_edge_irq()
author
Thomas Gleixner
<
[email protected]
>
Wed, 2 Feb 2011 21:41:17 +0000
(21:41 +0000)
committer
Thomas Gleixner
<
[email protected]
>
Sat, 19 Feb 2011 11:58:11 +0000
(12:58 +0100)
IRQ_MASKED is set in mask_ack_irq() anyway. Remove it from
handle_edge_irq() to allow simpler ab^HHreuse of that function.
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
LKML-Reference: <
20110202212551
.
918484270
@linutronix.de>
kernel/irq/chip.c
patch
|
blob
|
history
diff --git
a/kernel/irq/chip.c
b/kernel/irq/chip.c
index 43c62ca68c11afd5b28244e087fcbbcf3c6fde1c..2c30b78445951f427641be5a54e346e466ec2b93 100644
(file)
--- a/
kernel/irq/chip.c
+++ b/
kernel/irq/chip.c
@@
-611,7
+611,7
@@
handle_edge_irq(unsigned int irq, struct irq_desc *desc)
if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
!desc->action)) {
if (!irq_check_poll(desc)) {
- desc->status |=
(IRQ_PENDING | IRQ_MASKED)
;
+ desc->status |=
IRQ_PENDING
;
mask_ack_irq(desc);
goto out_unlock;
}