diff options
Diffstat (limited to 'arch/arm/mach-s3c24xx/mach-anubis.c')
| -rw-r--r-- | arch/arm/mach-s3c24xx/mach-anubis.c | 14 | 
1 files changed, 5 insertions, 9 deletions
diff --git a/arch/arm/mach-s3c24xx/mach-anubis.c b/arch/arm/mach-s3c24xx/mach-anubis.c index 85eefab881a..bb595f15ce3 100644 --- a/arch/arm/mach-s3c24xx/mach-anubis.c +++ b/arch/arm/mach-s3c24xx/mach-anubis.c @@ -28,17 +28,12 @@  #include <asm/mach/map.h>  #include <asm/mach/irq.h> -#include <mach/anubis-map.h> -#include <mach/anubis-irq.h> -#include <mach/anubis-cpld.h> -  #include <mach/hardware.h>  #include <asm/irq.h>  #include <asm/mach-types.h>  #include <plat/regs-serial.h>  #include <mach/regs-gpio.h> -#include <mach/regs-mem.h>  #include <mach/regs-lcd.h>  #include <linux/platform_data/mtd-nand-s3c2410.h>  #include <linux/platform_data/i2c-s3c2410.h> @@ -55,8 +50,9 @@  #include <plat/cpu.h>  #include <linux/platform_data/asoc-s3c24xx_simtec.h> -#include "simtec.h" +#include "anubis.h"  #include "common.h" +#include "simtec.h"  #define COPYRIGHT ", Copyright 2005-2009 Simtec Electronics" @@ -237,7 +233,7 @@ static struct pata_platform_info anubis_ide_platdata = {  static struct resource anubis_ide0_resource[] = {  	[0] = DEFINE_RES_MEM(S3C2410_CS3, 8 * 32),  	[2] = DEFINE_RES_MEM(S3C2410_CS3 + (1 << 26) + (6 * 32), 32), -	[3] = DEFINE_RES_IRQ(IRQ_IDE0), +	[3] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0),  };  static struct platform_device anubis_device_ide0 = { @@ -254,7 +250,7 @@ static struct platform_device anubis_device_ide0 = {  static struct resource anubis_ide1_resource[] = {  	[0] = DEFINE_RES_MEM(S3C2410_CS4, 8 * 32),  	[1] = DEFINE_RES_MEM(S3C2410_CS4 + (1 << 26) + (6 * 32), 32), -	[2] = DEFINE_RES_IRQ(IRQ_IDE0), +	[2] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0),  };  static struct platform_device anubis_device_ide1 = { @@ -279,7 +275,7 @@ static struct ax_plat_data anubis_asix_platdata = {  static struct resource anubis_asix_resource[] = {  	[0] = DEFINE_RES_MEM(S3C2410_CS5, 0x20 * 0x20), -	[1] = DEFINE_RES_IRQ(IRQ_ASIX), +	[1] = DEFINE_RES_IRQ(ANUBIS_IRQ_ASIX),  };  static struct platform_device anubis_device_asix = {  |