diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-29 21:04:38 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-29 21:04:38 -0500 |
commit | 97b19778ee5dd0484493f12f6a9cf9391cf0aefb (patch) | |
tree | c5aa9ff03c522e7212d1b4612b5b033e90e3ed2a /arch/sh/boards | |
parent | 396c56a9c69ebb0baf9171a6365ac9fda322728d (diff) |
sh: mach-se: Fix up irq_desc reference.
The irq_desc needs to be accessed with irq_to_desc(), this fixes up a
build error with irq_desc being undefined.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r-- | arch/sh/boards/mach-se/7206/irq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/boards/mach-se/7206/irq.c b/arch/sh/boards/mach-se/7206/irq.c index 79be4bc59933..8d82175d83ab 100644 --- a/arch/sh/boards/mach-se/7206/irq.c +++ b/arch/sh/boards/mach-se/7206/irq.c | |||
@@ -89,8 +89,9 @@ static void enable_se7206_irq(unsigned int irq) | |||
89 | static void eoi_se7206_irq(unsigned int irq) | 89 | static void eoi_se7206_irq(unsigned int irq) |
90 | { | 90 | { |
91 | unsigned short sts0,sts1; | 91 | unsigned short sts0,sts1; |
92 | struct irq_desc *desc = irq_to_desc(irq); | ||
92 | 93 | ||
93 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | 94 | if (!(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS))) |
94 | enable_se7206_irq(irq); | 95 | enable_se7206_irq(irq); |
95 | /* FPGA isr clear */ | 96 | /* FPGA isr clear */ |
96 | sts0 = __raw_readw(INTSTS0); | 97 | sts0 = __raw_readw(INTSTS0); |