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:
fb78b11
)
ARM: 5768/1: ep93xx: remove dead code in ep93xx_gpio_ab_irq_handler()
author
Hartley Sweeten
<
[email protected]
>
Wed, 21 Oct 2009 01:21:20 +0000
(
02:21
+0100)
committer
Russell King
<
[email protected]
>
Wed, 21 Oct 2009 12:09:36 +0000
(13:09 +0100)
Remove unnecessary code in ep93xx_gpio_ab_irq_handler().
The desc calculation for gpio port B was left in when the following
commit was merged.
commit
d8aa0251f12546e9bd1e9ee1d9782d6492819a04
Author: Dmitry Baryshkov <
[email protected]
>
Date: Thu Oct 9 13:36:24 2008 +0100
[ARM] 5298/1: Drop desc_handle_irq()
It's not needed so remove it.
Signed-off-by: H Hartley Sweeten <
[email protected]
>
Acked-by: Ryan Mallon <
[email protected]
>
Signed-off-by: Russell King <
[email protected]
>
arch/arm/mach-ep93xx/core.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-ep93xx/core.c
b/arch/arm/mach-ep93xx/core.c
index f95dc160c34b125e09f7572daebb6aaddbf96d42..b4357c388d2e5e87b37e344fbdaa965083fac4e6 100644
(file)
--- a/
arch/arm/mach-ep93xx/core.c
+++ b/
arch/arm/mach-ep93xx/core.c
@@
-206,7
+206,6
@@
static void ep93xx_gpio_ab_irq_handler(unsigned int irq, struct irq_desc *desc)
for (i = 0; i < 8; i++) {
if (status & (1 << i)) {
int gpio_irq = gpio_to_irq(EP93XX_GPIO_LINE_B(0)) + i;
- desc = irq_desc + gpio_irq;
generic_handle_irq(gpio_irq);
}
}