mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
2f05726171
Enable compile testing for broader build coverage. None of the drivers use anything from "asm", so code should build everywhere. CONFIG_PLAT_VERSATILE is being selected by driver dependencies (CONFIG_ARCH_INTEGRATOR and CONFIG_ARCH_REALVIEW), so directory can be always added to Makefile targets without impacting other configurations. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/20240825-soc-dev-fixes-v1-4-ff4b35abed83@linaro.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
21 lines
637 B
Plaintext
21 lines
637 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# ARM Versatile SoC drivers
|
|
#
|
|
config SOC_INTEGRATOR_CM
|
|
bool "SoC bus device for the ARM Integrator platform core modules"
|
|
depends on ARCH_INTEGRATOR || COMPILE_TEST
|
|
select SOC_BUS
|
|
help
|
|
Include support for the SoC bus on the ARM Integrator platform
|
|
core modules providing some sysfs information about the ASIC
|
|
variant.
|
|
|
|
config SOC_REALVIEW
|
|
bool "SoC bus device for the ARM RealView platforms"
|
|
depends on ARCH_REALVIEW || COMPILE_TEST
|
|
select SOC_BUS
|
|
help
|
|
Include support for the SoC bus on the ARM RealView platforms
|
|
providing some sysfs information about the ASIC variant.
|