-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pinctrl: samsung: Group all drivers in a sub-dir
Group all pin control drivers of Samsung platform together in a sub-directory for easy maintenance. Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Sachin Kamat
authored and
Linus Walleij
committed
Jul 11, 2014
1 parent
aef1d00
commit ebe629a
Showing
11 changed files
with
40 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# Samsung Pin control drivers | ||
# | ||
config PINCTRL_SAMSUNG | ||
bool | ||
select PINMUX | ||
select PINCONF | ||
|
||
config PINCTRL_EXYNOS | ||
bool "Pinctrl driver data for Samsung EXYNOS SoCs other than 5440" | ||
depends on OF && GPIOLIB && (ARCH_EXYNOS || ARCH_S5PV210) | ||
select PINCTRL_SAMSUNG | ||
|
||
config PINCTRL_EXYNOS5440 | ||
bool "Samsung EXYNOS5440 SoC pinctrl driver" | ||
depends on SOC_EXYNOS5440 | ||
select PINMUX | ||
select PINCONF | ||
|
||
config PINCTRL_S3C24XX | ||
bool "Samsung S3C24XX SoC pinctrl driver" | ||
depends on ARCH_S3C24XX | ||
select PINCTRL_SAMSUNG | ||
|
||
config PINCTRL_S3C64XX | ||
bool "Samsung S3C64XX SoC pinctrl driver" | ||
depends on ARCH_S3C64XX | ||
select PINCTRL_SAMSUNG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Samsung pin control drivers | ||
|
||
obj-$(CONFIG_PINCTRL_SAMSUNG) += pinctrl-samsung.o | ||
obj-$(CONFIG_PINCTRL_EXYNOS) += pinctrl-exynos.o | ||
obj-$(CONFIG_PINCTRL_EXYNOS5440) += pinctrl-exynos5440.o | ||
obj-$(CONFIG_PINCTRL_S3C24XX) += pinctrl-s3c24xx.o | ||
obj-$(CONFIG_PINCTRL_S3C64XX) += pinctrl-s3c64xx.o |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.