aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/sys_jensen.c
diff options
context:
space:
mode:
authorKyle McMartin <kyle@redhat.com>2010-10-14 22:31:11 -0400
committerMatt Turner <mattst88@monolith.freenet-rz.de>2011-01-16 23:42:11 -0500
commitd5ccde0a64c3dbe954a8a13a6ba9fb3b6d7c6225 (patch)
tree00a7c1a1fc1fa42fdc88bdab8a30e40e3dcaa775 /arch/alpha/kernel/sys_jensen.c
parente78bf5e6cbe837daa6ab628a5f679548742994d3 (diff)
alpha: use set_irq_chip and push down __do_IRQ to the machine types
Also kill superfluous IRQ_DISABLED initialization, since that's the default state of the irq_desc[i].status field. 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_jensen.c')
-rw-r--r--arch/alpha/kernel/sys_jensen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/alpha/kernel/sys_jensen.c b/arch/alpha/kernel/sys_jensen.c
index 7a7ae36fff91..5b64f913bedc 100644
--- a/arch/alpha/kernel/sys_jensen.c
+++ b/arch/alpha/kernel/sys_jensen.c
@@ -206,11 +206,11 @@ jensen_init_irq(void)
206{ 206{
207 init_i8259a_irqs(); 207 init_i8259a_irqs();
208 208
209 irq_desc[1].chip = &jensen_local_irq_type; 209 set_irq_chip_and_handler(1, &jensen_local_irq_type, alpha_do_IRQ);
210 irq_desc[4].chip = &jensen_local_irq_type; 210 set_irq_chip_and_handler(4, &jensen_local_irq_type, alpha_do_IRQ);
211 irq_desc[3].chip = &jensen_local_irq_type; 211 set_irq_chip_and_handler(3, &jensen_local_irq_type, alpha_do_IRQ);
212 irq_desc[7].chip = &jensen_local_irq_type; 212 set_irq_chip_and_handler(7, &jensen_local_irq_type, alpha_do_IRQ);
213 irq_desc[9].chip = &jensen_local_irq_type; 213 set_irq_chip_and_handler(9, &jensen_local_irq_type, alpha_do_IRQ);
214 214
215 common_init_isa_dma(); 215 common_init_isa_dma();
216} 216}