diff options
Diffstat (limited to 'arch/arm/mach-s3c24xx/bast-irq.c')
| -rw-r--r-- | arch/arm/mach-s3c24xx/bast-irq.c | 21 | 
1 files changed, 6 insertions, 15 deletions
diff --git a/arch/arm/mach-s3c24xx/bast-irq.c b/arch/arm/mach-s3c24xx/bast-irq.c index ac7b2ad5c40..cb1b791954d 100644 --- a/arch/arm/mach-s3c24xx/bast-irq.c +++ b/arch/arm/mach-s3c24xx/bast-irq.c @@ -27,27 +27,18 @@  #include <linux/device.h>  #include <linux/io.h> -#include <asm/mach-types.h> - -#include <mach/hardware.h>  #include <asm/irq.h> - +#include <asm/mach-types.h>  #include <asm/mach/irq.h> +#include <mach/hardware.h>  #include <mach/regs-irq.h> -#include <mach/bast-map.h> -#include <mach/bast-irq.h> -#include <plat/irq.h> - -#if 0 -#include <asm/debug-ll.h> -#endif +#include "bast.h"  #define irqdbf(x...)  #define irqdbf2(x...) -  /* handle PC104 ISA interrupts from the system CPLD */  /* table of ISA irq nos to the relevant mask... zero means @@ -87,7 +78,7 @@ bast_pc104_mask(struct irq_data *data)  static void  bast_pc104_maskack(struct irq_data *data)  { -	struct irq_desc *desc = irq_desc + IRQ_ISA; +	struct irq_desc *desc = irq_desc + BAST_IRQ_ISA;  	bast_pc104_mask(data);  	desc->irq_data.chip->irq_ack(&desc->irq_data); @@ -122,7 +113,7 @@ bast_irq_pc104_demux(unsigned int irq,  	if (unlikely(stat == 0)) {  		/* ack if we get an irq with nothing (ie, startup) */ -		desc = irq_desc + IRQ_ISA; +		desc = irq_desc + BAST_IRQ_ISA;  		desc->irq_data.chip->irq_ack(&desc->irq_data);  	} else {  		/* handle the IRQ */ @@ -147,7 +138,7 @@ static __init int bast_irq_init(void)  		__raw_writeb(0x0, BAST_VA_PC104_IRQMASK); -		irq_set_chained_handler(IRQ_ISA, bast_irq_pc104_demux); +		irq_set_chained_handler(BAST_IRQ_ISA, bast_irq_pc104_demux);  		/* register our IRQs */  |