mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
pinctrl: uniphier: guard uniphier directory with CONFIG_PINCTRL_UNIPHIER
CONFIG_PINCTRL_UNIPHIER is more suitable than CONFIG_ARCH_UNIPHIER to guard the drivers/pinctrl/uniphier directory. The current CONFIG_PINCTRL_UNIPHIER_CORE is a bit long, so rename it into CONFIG_PINCTRL_UNIPHIER. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
fdd15b6a86
commit
1d22c4b1bd
3 changed files with 9 additions and 9 deletions
|
@ -9,5 +9,5 @@ obj-y += nxp/
|
|||
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
||||
obj-$(CONFIG_PINCTRL_SANDBOX) += pinctrl-sandbox.o
|
||||
|
||||
obj-$(CONFIG_ARCH_UNIPHIER) += uniphier/
|
||||
obj-$(CONFIG_PINCTRL_UNIPHIER) += uniphier/
|
||||
obj-$(CONFIG_PIC32_PINCTRL) += pinctrl_pic32.o
|
||||
|
|
|
@ -1,42 +1,42 @@
|
|||
if ARCH_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_CORE
|
||||
config PINCTRL_UNIPHIER
|
||||
bool
|
||||
|
||||
config PINCTRL_UNIPHIER_PH1_LD4
|
||||
bool "UniPhier PH1-LD4 SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PH1_LD4
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_PH1_PRO4
|
||||
bool "UniPhier PH1-Pro4 SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PH1_PRO4
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_PH1_SLD8
|
||||
bool "UniPhier PH1-sLD8 SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PH1_SLD8
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_PH1_PRO5
|
||||
bool "UniPhier PH1-Pro5 SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PH1_PRO5
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_PROXSTREAM2
|
||||
bool "UniPhier ProXstream2 SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PROXSTREAM2
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
config PINCTRL_UNIPHIER_PH1_LD6B
|
||||
bool "UniPhier PH1-LD6b SoC pinctrl driver"
|
||||
depends on ARCH_UNIPHIER_PH1_LD6B
|
||||
default y
|
||||
select PINCTRL_UNIPHIER_CORE
|
||||
select PINCTRL_UNIPHIER
|
||||
|
||||
endif
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(CONFIG_PINCTRL_UNIPHIER_CORE) += pinctrl-uniphier-core.o
|
||||
obj-y += pinctrl-uniphier-core.o
|
||||
|
||||
obj-$(CONFIG_PINCTRL_UNIPHIER_PH1_LD4) += pinctrl-ph1-ld4.o
|
||||
obj-$(CONFIG_PINCTRL_UNIPHIER_PH1_PRO4) += pinctrl-ph1-pro4.o
|
||||
|
|
Loading…
Reference in a new issue