summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/at91rm9200_devices.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2011-07-19 19:17:22 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-07-20 08:25:43 +0200
commiteb18395e0743974fd9fad8c0e5005932074ffe84 (patch)
treecca3a7375df705268ca7be0e5dc66b4994e43bcb /arch/arm/mach-at91/at91rm9200_devices.c
parent8262d20dae583adc9338b355fe3aa395fda99ec2 (diff)
downloadbarebox-eb18395e0743974fd9fad8c0e5005932074ffe84.tar.gz
barebox-eb18395e0743974fd9fad8c0e5005932074ffe84.tar.xz
at91: add missing IORESOURCE_MEM flags to resources
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-at91/at91rm9200_devices.c')
-rw-r--r--arch/arm/mach-at91/at91rm9200_devices.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/at91rm9200_devices.c b/arch/arm/mach-at91/at91rm9200_devices.c
index d0502ca193..16c94a68b9 100644
--- a/arch/arm/mach-at91/at91rm9200_devices.c
+++ b/arch/arm/mach-at91/at91rm9200_devices.c
@@ -38,6 +38,7 @@ static struct resource eth_resources[] = {
[0] = {
.start = AT91_VA_BASE_EMAC,
.size = 0x1000,
+ .flags = IORESOURCE_MEM,
},
};
@@ -92,6 +93,7 @@ static struct resource nand_resources[] = {
[0] = {
.start = AT91_CHIPSELECT_3,
.size = 0x10,
+ .flags = IORESOURCE_MEM,
},
};
@@ -151,6 +153,7 @@ static struct resource dbgu_resources[] = {
[0] = {
.start = AT91_BASE_SYS + AT91_DBGU,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -171,6 +174,7 @@ static struct resource uart0_resources[] = {
[0] = {
.start = AT91RM9200_BASE_US0,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -202,6 +206,7 @@ static struct resource uart1_resources[] = {
[0] = {
.start = AT91RM9200_BASE_US1,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -235,6 +240,7 @@ static struct resource uart2_resources[] = {
[0] = {
.start = AT91RM9200_BASE_US2,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -260,6 +266,7 @@ static struct resource uart3_resources[] = {
[0] = {
.start = AT91RM9200_BASE_US3,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};