diff options
author | Axel Lin <axel.lin@ingics.com> | 2012-12-09 19:54:03 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-12-18 22:00:25 -0500 |
commit | d5fd5da290cef159be1295c162b4c71b8c1971a2 (patch) | |
tree | bf5dac7dfc9b4899b49c8f7ce13d915812bb6dfd /drivers/pinctrl/pinctrl-exynos5440.c | |
parent | 88f2324fa99de208096425b8290186b9ab434612 (diff) |
pinctrl: exynos5440/samsung: Staticize pcfgs
I got below build error with random config if CONFIG_PINCTRL_SAMSUNG=y &&
CONFIG_PINCTRL_EXYNOS5440=y.
Fix the build error by making pcfgs static.
LD drivers/pinctrl/built-in.o
drivers/pinctrl/pinctrl-exynos5440.o: In function `.LANCHOR0':
pinctrl-exynos5440.c:(.data+0x54): multiple definition of `pcfgs'
drivers/pinctrl/pinctrl-samsung.o:pinctrl-samsung.c:(.data+0x54): first defined here
make[2]: *** [drivers/pinctrl/built-in.o] Error 1
make[1]: *** [drivers/pinctrl] Error 2
make: *** [drivers] Error 2
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Thomas Abraham <thomas.abraham@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/pinctrl/pinctrl-exynos5440.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-exynos5440.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-exynos5440.c b/drivers/pinctrl/pinctrl-exynos5440.c index b8635f634e91..07db89528dc3 100644 --- a/drivers/pinctrl/pinctrl-exynos5440.c +++ b/drivers/pinctrl/pinctrl-exynos5440.c | |||
@@ -117,7 +117,7 @@ struct exynos5440_pinctrl_priv_data { | |||
117 | }; | 117 | }; |
118 | 118 | ||
119 | /* list of all possible config options supported */ | 119 | /* list of all possible config options supported */ |
120 | struct pin_config { | 120 | static struct pin_config { |
121 | char *prop_cfg; | 121 | char *prop_cfg; |
122 | unsigned int cfg_type; | 122 | unsigned int cfg_type; |
123 | } pcfgs[] = { | 123 | } pcfgs[] = { |