]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: S3C24XX: Use common macro to define resources on mach-at2440evb.c
authorTushar Behera <tushar.behera@linaro.org>
Sat, 12 May 2012 07:12:21 +0000 (16:12 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Sat, 12 May 2012 07:12:21 +0000 (16:12 +0900)
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-s3c24xx/mach-at2440evb.c

index d7ae49c90118443cf0cc218f04a687945b6d1ab4..7a05abf1270b061d925c569d7e28ca4e483abf2a 100644 (file)
@@ -118,21 +118,10 @@ static struct s3c2410_platform_nand __initdata at2440evb_nand_info = {
 /* DM9000AEP 10/100 ethernet controller */
 
 static struct resource at2440evb_dm9k_resource[] = {
-       [0] = {
-               .start = S3C2410_CS3,
-               .end   = S3C2410_CS3 + 3,
-               .flags = IORESOURCE_MEM
-       },
-       [1] = {
-               .start = S3C2410_CS3 + 4,
-               .end   = S3C2410_CS3 + 7,
-               .flags = IORESOURCE_MEM
-       },
-       [2] = {
-               .start = IRQ_EINT7,
-               .end   = IRQ_EINT7,
-               .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
-       }
+       [0] = DEFINE_RES_MEM(S3C2410_CS3, 4),
+       [1] = DEFINE_RES_MEM(S3C2410_CS3 + 4, 4),
+       [2] = DEFINE_RES_NAMED(IRQ_EINT7, 1, NULL, IORESOURCE_IRQ \
+                                       | IORESOURCE_IRQ_HIGHEDGE),
 };
 
 static struct dm9000_plat_data at2440evb_dm9k_pdata = {