Skip to content

Commit

Permalink
[ARM] 3699/1: ARM: Convert s3c2410 to generic irq handling
Browse files Browse the repository at this point in the history
Patch from Thomas Gleixner

From: Thomas Gleixner <tglx@linutronix.de>

Fixup the conversion to generic irq subsystem.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Thomas Gleixner authored and Russell King committed Jul 1, 2006
1 parent 119c641 commit 544b46d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-s3c2410/bast-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ bast_irq_pc104_demux(unsigned int irq,
for (i = 0; stat != 0; i++, stat >>= 1) {
if (stat & 1) {
irqno = bast_pc104_irqs[i];

desc_handle_irq(irqno, irq_desc + irqno, regs);
desc = irq_desc + irqno;
desc_handle_irq(irqno, desc, regs);
}
}
}
Expand All @@ -156,7 +156,7 @@ static __init int bast_irq_init(void)

set_irq_chained_handler(IRQ_ISA, bast_irq_pc104_demux);

/* reigster our IRQs */
/* register our IRQs */

for (i = 0; i < 4; i++) {
unsigned int irqno = bast_pc104_irqs[i];
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-s3c2410/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/err.h>
#include <linux/clk.h>

Expand Down

0 comments on commit 544b46d

Please sign in to comment.