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:
86cc8df
)
sh: Fix irq cleanup fallout
author
Thomas Gleixner
<
[email protected]
>
Tue, 29 Mar 2011 22:15:49 +0000
(
00:15
+0200)
committer
Thomas Gleixner
<
[email protected]
>
Tue, 29 Mar 2011 22:15:49 +0000
(
00:15
+0200)
I missed that coccinelle does not fix up header files by default.
Reported-by: Rafael J. Wysocki <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc: Paul Mundt <
[email protected]
>
Cc: <
[email protected]
>
drivers/sh/intc/internals.h
patch
|
blob
|
history
diff --git
a/drivers/sh/intc/internals.h
b/drivers/sh/intc/internals.h
index df36a421e6756b5e775e16d2b8995b769f18e875..5b934851efa86e63c8f03c8763f1706265f03e5f 100644
(file)
--- a/
drivers/sh/intc/internals.h
+++ b/
drivers/sh/intc/internals.h
@@
-86,7
+86,7
@@
enum { MODE_ENABLE_REG = 0, /* Bit(s) set -> interrupt enabled */
static inline struct intc_desc_int *get_intc_desc(unsigned int irq)
{
- struct irq_chip *chip =
get_irq
_chip(irq);
+ struct irq_chip *chip =
irq_get
_chip(irq);
return container_of(chip, struct intc_desc_int, chip);
}
@@
-103,7
+103,7
@@
static inline void activate_irq(int irq)
set_irq_flags(irq, IRQF_VALID);
#else
/* same effect on other architectures */
-
set_irq
_noprobe(irq);
+
irq_set
_noprobe(irq);
#endif
}