mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-18 02:24:21 +08: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>
25 lines
555 B
Plaintext
25 lines
555 B
Plaintext
menuconfig ARCH_OXNAS
|
|
bool "Oxford Semiconductor OXNAS Family SoCs"
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select GPIOLIB
|
|
select PINCTRL
|
|
depends on ARCH_MULTI_V5
|
|
help
|
|
Support for OxNas SoC family developed by Oxford Semiconductor.
|
|
|
|
if ARCH_OXNAS
|
|
|
|
config MACH_OX810SE
|
|
bool "Support OX810SE Based Products"
|
|
select ARM_TIMER_SP804
|
|
select COMMON_CLK_OXNAS
|
|
select CPU_ARM926T
|
|
select MFD_SYSCON
|
|
select PINCTRL_OXNAS
|
|
select RESET_OXNAS
|
|
select VERSATILE_FPGA_IRQ
|
|
help
|
|
Include Support for the Oxford Semiconductor OX810SE SoC Based Products.
|
|
|
|
endif
|