diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-08-02 03:33:38 +0200 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-08-06 11:07:12 +0200 |
commit | c7537655c6ce1d769bd6d4ec368cdf8c36ebb6ea (patch) | |
tree | 8cd852e28e4298469439393135936e4e3a3cc4a7 | |
parent | ARM: shmobile: Remove unused shmobile_init_time() (diff) | |
download | linux-c7537655c6ce1d769bd6d4ec368cdf8c36ebb6ea.tar.xz linux-c7537655c6ce1d769bd6d4ec368cdf8c36ebb6ea.zip |
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>
-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, |