mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 19:11:02 +07:00
5c34a4e89c
This replaces: - "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB" as this can now be selected directly. - "select ARCH_WANT_OPTIONAL_GPIOLIB" with no dependency: GPIOLIB is now selectable by everyone, so we need not declare our intent to select it. When ordering the symbols the following rationale was used: if the selects were in alphabetical order, I moved select GPIOLIB to be in alphabetical order, but if the selects were not maintained in alphabetical order, I just replaced "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB". Cc: Michael Büsch <m@bues.ch> Cc: arm@kernel.org Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
30 lines
601 B
Plaintext
30 lines
601 B
Plaintext
config ARCH_VT8500
|
|
bool
|
|
select GPIOLIB
|
|
select CLKDEV_LOOKUP
|
|
select VT8500_TIMER
|
|
select PINCTRL
|
|
help
|
|
Support for VIA/WonderMedia VT8500/WM85xx System-on-Chip.
|
|
|
|
config ARCH_WM8505
|
|
bool "VIA/Wondermedia 85xx and WM8650"
|
|
depends on ARCH_MULTI_V5
|
|
select ARCH_VT8500
|
|
select CPU_ARM926T
|
|
help
|
|
|
|
config ARCH_WM8750
|
|
bool "WonderMedia WM8750"
|
|
depends on ARCH_MULTI_V6
|
|
select ARCH_VT8500
|
|
help
|
|
Support for WonderMedia WM8750 System-on-Chip.
|
|
|
|
config ARCH_WM8850
|
|
bool "WonderMedia WM8850"
|
|
depends on ARCH_MULTI_V7
|
|
select ARCH_VT8500
|
|
help
|
|
Support for WonderMedia WM8850 System-on-Chip.
|