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/irq_pyxis.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/irq_pyxis.c')
-rw-r--r-- | arch/alpha/kernel/irq_pyxis.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/alpha/kernel/irq_pyxis.c b/arch/alpha/kernel/irq_pyxis.c index 4e1904cd0fc..9f603cfd440 100644 --- a/arch/alpha/kernel/irq_pyxis.c +++ b/arch/alpha/kernel/irq_pyxis.c | |||
@@ -50,7 +50,8 @@ pyxis_startup_irq(unsigned int irq) | |||
50 | static void | 50 | static void |
51 | pyxis_end_irq(unsigned int irq) | 51 | pyxis_end_irq(unsigned int irq) |
52 | { | 52 | { |
53 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | 53 | struct irq_desc *desc = irq_to_desc(irq); |
54 | if (desc || !(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS))) | ||
54 | pyxis_enable_irq(irq); | 55 | pyxis_enable_irq(irq); |
55 | } | 56 | } |
56 | 57 | ||
@@ -120,7 +121,7 @@ init_pyxis_irqs(unsigned long ignore_mask) | |||
120 | if ((ignore_mask >> i) & 1) | 121 | if ((ignore_mask >> i) & 1) |
121 | continue; | 122 | continue; |
122 | set_irq_chip_and_handler(i, &pyxis_irq_type, alpha_do_IRQ); | 123 | set_irq_chip_and_handler(i, &pyxis_irq_type, alpha_do_IRQ); |
123 | irq_desc[i].status |= IRQ_LEVEL; | 124 | irq_to_desc(i)->status |= IRQ_LEVEL; |
124 | } | 125 | } |
125 | 126 | ||
126 | setup_irq(16+7, &isa_cascade_irqaction); | 127 | setup_irq(16+7, &isa_cascade_irqaction); |