summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/at91sam9260_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/at91sam9260_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/at91sam9260_devices.c')
-rw-r--r--arch/arm/mach-at91/at91sam9260_devices.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c
index 988dd92e3c..3808c66e89 100644
--- a/arch/arm/mach-at91/at91sam9260_devices.c
+++ b/arch/arm/mach-at91/at91sam9260_devices.c
@@ -35,6 +35,7 @@ static struct resource eth_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_EMAC,
.size = 0x1000,
+ .flags = IORESOURCE_MEM,
},
};
@@ -85,6 +86,7 @@ static struct resource nand_resources[] = {
[0] = {
.start = AT91_CHIPSELECT_3,
.size = 0x10,
+ .flags = IORESOURCE_MEM,
},
};
@@ -128,6 +130,7 @@ static struct resource dbgu_resources[] = {
[0] = {
.start = AT91_BASE_SYS + AT91_DBGU,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -148,6 +151,7 @@ static struct resource uart0_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US0,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -181,6 +185,7 @@ static struct resource uart1_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US1,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -206,6 +211,7 @@ static struct resource uart2_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US2,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -231,6 +237,7 @@ static struct resource uart3_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US3,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -256,6 +263,7 @@ static struct resource uart4_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US4,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -276,6 +284,7 @@ static struct resource uart5_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_US5,
.size = 4096,
+ .flags = IORESOURCE_MEM,
},
};
@@ -340,6 +349,7 @@ static struct resource mci_resources[] = {
[0] = {
.start = AT91SAM9260_BASE_MCI,
.size = SZ_16K,
+ .flags = IORESOURCE_MEM,
},
};