aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2012-12-27 13:11:10 -0500
committerLinus Walleij <linus.walleij@linaro.org>2013-01-17 03:17:59 -0500
commite4a5da51daddf104183b42995411e2496832de1d (patch)
tree1f38279a6e5323626879d7b231b636e732494c4e /drivers/gpio
parent9b89cb8172f2ddd5a0aab74f20155036065956ac (diff)
gpio: samsung: fix pinctrl condition for exynos and exynos5440
Since EXYNOS5440 can select PINCTRL_EXYNOS5440 without PINCTRL_SAMSUNG, it should be fixed. In detail, PINCTRL_SAMSUNG is a kind of frame work for supporting pinctrl on most Samsung SoCs including S3C, S5P as well except EXYNOS5440 so PINCTRL_EXYNOS5440 has been implemented separated. Cc: Thomas Abraham <thomas.ab@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-samsung.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-samsung.c b/drivers/gpio/gpio-samsung.c
index 9070f8632002..713ec8c492b1 100644
--- a/drivers/gpio/gpio-samsung.c
+++ b/drivers/gpio/gpio-samsung.c
@@ -3009,7 +3009,7 @@ static __init int samsung_gpiolib_init(void)
3009 int i, nr_chips; 3009 int i, nr_chips;
3010 int group = 0; 3010 int group = 0;
3011 3011
3012#ifdef CONFIG_PINCTRL_SAMSUNG 3012#if defined(CONFIG_PINCTRL_EXYNOS) || defined(CONFIG_PINCTRL_EXYNOS5440)
3013 /* 3013 /*
3014 * This gpio driver includes support for device tree support and there 3014 * This gpio driver includes support for device tree support and there
3015 * are platforms using it. In order to maintain compatibility with those 3015 * are platforms using it. In order to maintain compatibility with those