diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-10-07 22:58:20 -0700 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-11-24 15:14:29 +0900 |
commit | e33e6968ccffc50e788a7a98613985410262332f (patch) | |
tree | 549cdf0f22394732f32ff57fadb39ba8dbbc17a4 | |
parent | 61a4fd12d43426fa52fb05dbf21efa057b4a7e78 (diff) |
ARM: shmobile: ape6evm: don't use named resource for SDHI
sh_mobile_sdhi driver doesn't care resource name.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/mach-shmobile/board-ape6evm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/board-ape6evm.c b/arch/arm/mach-shmobile/board-ape6evm.c index 94adf619930..fe071a9130b 100644 --- a/arch/arm/mach-shmobile/board-ape6evm.c +++ b/arch/arm/mach-shmobile/board-ape6evm.c @@ -179,7 +179,7 @@ static const struct sh_mobile_sdhi_info sdhi0_pdata __initconst = { }; static const struct resource sdhi0_resources[] __initconst = { - DEFINE_RES_MEM_NAMED(0xee100000, 0x100, "SDHI0"), + DEFINE_RES_MEM(0xee100000, 0x100), DEFINE_RES_IRQ(gic_spi(165)), }; @@ -191,7 +191,7 @@ static const struct sh_mobile_sdhi_info sdhi1_pdata __initconst = { }; static const struct resource sdhi1_resources[] __initconst = { - DEFINE_RES_MEM_NAMED(0xee120000, 0x100, "SDHI1"), + DEFINE_RES_MEM(0xee120000, 0x100), DEFINE_RES_IRQ(gic_spi(166)), }; |