diff options
author | Kyle McMartin <kyle@redhat.com> | 2010-10-14 22:31:25 -0400 |
---|---|---|
committer | Matt Turner <mattst88@monolith.freenet-rz.de> | 2011-01-16 23:42:12 -0500 |
commit | a891b393dd7f6ed84ecee98c0eac4a808ff2cbbc (patch) | |
tree | ab4ee31ef54691f492e77dfc2d937f62c055cb1a /arch/alpha/kernel/sys_eb64p.c | |
parent | d5ccde0a64c3dbe954a8a13a6ba9fb3b6d7c6225 (diff) |
alpha: irq clean up
Stop touching irq_desc[irq] directly, instead use accessor
functions provided. Use irq_has_action instead of directly
testing the irq_desc.
Tested-by: Michael Cree <mcree@orcon.net.nz>
Signed-off-by: Kyle McMartin <kyle@redhat.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch/alpha/kernel/sys_eb64p.c')
-rw-r--r-- | arch/alpha/kernel/sys_eb64p.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/sys_eb64p.c b/arch/alpha/kernel/sys_eb64p.c index cb309a422c01..f7a957a5575f 100644 --- a/arch/alpha/kernel/sys_eb64p.c +++ b/arch/alpha/kernel/sys_eb64p.c | |||
@@ -65,7 +65,7 @@ eb64p_startup_irq(unsigned int irq) | |||
65 | static void | 65 | static void |
66 | eb64p_end_irq(unsigned int irq) | 66 | eb64p_end_irq(unsigned int irq) |
67 | { | 67 | { |
68 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | 68 | if (!(irq_to_desc(irq)->status & (IRQ_DISABLED|IRQ_INPROGRESS))) |
69 | eb64p_enable_irq(irq); | 69 | eb64p_enable_irq(irq); |
70 | } | 70 | } |
71 | 71 | ||
@@ -135,7 +135,7 @@ eb64p_init_irq(void) | |||
135 | init_i8259a_irqs(); | 135 | init_i8259a_irqs(); |
136 | 136 | ||
137 | for (i = 16; i < 32; ++i) { | 137 | for (i = 16; i < 32; ++i) { |
138 | irq_desc[i].status |= IRQ_LEVEL; | 138 | irq_to_desc(i)->status |= IRQ_LEVEL; |
139 | set_irq_chip_and_handler(i, &eb64p_irq_type, alpha_do_IRQ); | 139 | set_irq_chip_and_handler(i, &eb64p_irq_type, alpha_do_IRQ); |
140 | } | 140 | } |
141 | 141 | ||