diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-08-01 18:33:38 -0700 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-08-06 18:07:12 +0900 |
commit | c7537655c6ce1d769bd6d4ec368cdf8c36ebb6ea (patch) | |
tree | 8cd852e28e4298469439393135936e4e3a3cc4a7 /arch/arm/mach-shmobile | |
parent | 13eb604665c94d4cd9d7e2aeceef974cf1f30701 (diff) |
ARM: shmobile: r8a7779: add missing __initdata
This patch adds missing __initdata to driver data/resource
which are used from platform_device_register_xxx()
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7779.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c index 111e953aba2b..f0b6c7dea2f0 100644 --- a/arch/arm/mach-shmobile/setup-r8a7779.c +++ b/arch/arm/mach-shmobile/setup-r8a7779.c @@ -537,7 +537,7 @@ static struct platform_device ohci1_device = { }; /* Ether */ -static struct resource ether_resources[] = { +static struct resource ether_resources[] __initdata = { { .start = 0xfde00000, .end = 0xfde003ff, |