mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-07 22:33:49 +00:00
All Samsung pinctrl drivers select common part - PINCTRL_SAMSUNG which uses
both OF and GPIOLIB inside. However only Exynos drivers depend on these,
therefore after enabling COMPILE_TEST, on x86_64 build of S3C64xx driver
failed:
drivers/pinctrl/samsung/pinctrl-samsung.c: In function ‘samsung_gpiolib_register’:
drivers/pinctrl/samsung/pinctrl-samsung.c:969:5: error: ‘struct gpio_chip’ has no member named ‘of_node’
gc->of_node = bank->of_node;
^
Rework the dependencies so all Samsung drivers and common
PINCTRL_SAMSUNG part depend on OF_GPIO (which is default yes if GPIOLIB
and OF are enabled).
Reported-by: Chen Zhou <chenzhou10@huawei.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
38 lines
1021 B
Plaintext
38 lines
1021 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Samsung Pin control drivers
|
|
#
|
|
config PINCTRL_SAMSUNG
|
|
bool
|
|
depends on OF_GPIO
|
|
select PINMUX
|
|
select PINCONF
|
|
|
|
config PINCTRL_EXYNOS
|
|
bool "Pinctrl common driver part for Samsung Exynos SoCs"
|
|
depends on OF_GPIO
|
|
depends on ARCH_EXYNOS || ARCH_S5PV210 || COMPILE_TEST
|
|
select PINCTRL_SAMSUNG
|
|
select PINCTRL_EXYNOS_ARM if ARM && (ARCH_EXYNOS || ARCH_S5PV210)
|
|
select PINCTRL_EXYNOS_ARM64 if ARM64 && ARCH_EXYNOS
|
|
|
|
config PINCTRL_EXYNOS_ARM
|
|
bool "ARMv7-specific pinctrl driver for Samsung Exynos SoCs" if COMPILE_TEST
|
|
depends on PINCTRL_EXYNOS
|
|
|
|
config PINCTRL_EXYNOS_ARM64
|
|
bool "ARMv8-specific pinctrl driver for Samsung Exynos SoCs" if COMPILE_TEST
|
|
depends on PINCTRL_EXYNOS
|
|
|
|
config PINCTRL_S3C24XX
|
|
bool "Samsung S3C24XX SoC pinctrl driver"
|
|
depends on OF_GPIO
|
|
depends on ARCH_S3C24XX || COMPILE_TEST
|
|
select PINCTRL_SAMSUNG
|
|
|
|
config PINCTRL_S3C64XX
|
|
bool "Samsung S3C64XX SoC pinctrl driver"
|
|
depends on OF_GPIO
|
|
depends on ARCH_S3C64XX || COMPILE_TEST
|
|
select PINCTRL_SAMSUNG
|