aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/mach-ecovec24/setup.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2018-12-06 13:08:17 +0100
committerUlf Hansson <ulf.hansson@linaro.org>2018-12-17 08:26:24 +0100
commitc4916c24ff54fb3dcf07fb64353f8e74e3482b64 (patch)
treee637195dcecfe9f91cded3f9e9a4f0eeeba26ac1 /arch/sh/boards/mach-ecovec24/setup.c
parentmmc: sdhci-of-esdhc: fix spelling mistake "upsupported" -> "unsupported" (diff)
downloadlinux-dev-c4916c24ff54fb3dcf07fb64353f8e74e3482b64.tar.xz
linux-dev-c4916c24ff54fb3dcf07fb64353f8e74e3482b64.zip
sh: ecovec24: Fix an ifdef
I managed to put the ifdef/else statements wrong when registering the GPIO descriptor table for MMC CD/WP. Fixing it up! Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Fixes: babd0b238d11 ("mmc: host: tmio: Use GPIO descriptors") Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to '')
-rw-r--r--arch/sh/boards/mach-ecovec24/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c
index af2c28946319..058b168bdf26 100644
--- a/arch/sh/boards/mach-ecovec24/setup.c
+++ b/arch/sh/boards/mach-ecovec24/setup.c
@@ -1460,10 +1460,10 @@ static int __init arch_setup(void)
#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
gpiod_add_lookup_table(&sdhi0_power_gpiod_table);
gpiod_add_lookup_table(&sdhi0_gpio_table);
-#endif
#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
gpiod_add_lookup_table(&sdhi1_gpio_table);
#endif
+#endif
return platform_add_devices(ecovec_devices,
ARRAY_SIZE(ecovec_devices));