diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-10-07 22:58:30 -0700 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-11-24 15:14:29 +0900 |
commit | b7b42df6c9400ae09453f894b06d9e7719058948 (patch) | |
tree | efc5afb21110ab6345e5e4e727533e68a749a4a3 /arch/arm/mach-shmobile/board-lager.c | |
parent | e33e6968ccffc50e788a7a98613985410262332f (diff) | |
download | linux-b7b42df6c9400ae09453f894b06d9e7719058948.tar.bz2 |
ARM: shmobile: lager: don't use named resource for MMCIF
sh_mmcif 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>
Diffstat (limited to 'arch/arm/mach-shmobile/board-lager.c')
-rw-r--r-- | arch/arm/mach-shmobile/board-lager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/board-lager.c b/arch/arm/mach-shmobile/board-lager.c index a8d3ce646fb9..78a31b667988 100644 --- a/arch/arm/mach-shmobile/board-lager.c +++ b/arch/arm/mach-shmobile/board-lager.c @@ -148,7 +148,7 @@ static const struct sh_mmcif_plat_data mmcif1_pdata __initconst = { }; static const struct resource mmcif1_resources[] __initconst = { - DEFINE_RES_MEM_NAMED(0xee220000, 0x80, "MMCIF1"), + DEFINE_RES_MEM(0xee220000, 0x80), DEFINE_RES_IRQ(gic_spi(170)), }; |