mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
070330d3d4
The current code selects ARCH_HAS_RESET_CONTROLLER, that enables the RESET_CONTROLLER option by default, but doesn't select it, so a configuration might unselect it, leading to compilation error. Explictly select RESET_CONTROLLER so that we can't have this breakage anymore. Reported-by: Emilio López <emilio@elopez.com.ar> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
17 lines
370 B
Plaintext
17 lines
370 B
Plaintext
config ARCH_SUNXI
|
|
bool "Allwinner A1X SOCs" if ARCH_MULTI_V7
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select ARCH_REQUIRE_GPIOLIB
|
|
select ARM_GIC
|
|
select CLKSRC_MMIO
|
|
select CLKSRC_OF
|
|
select COMMON_CLK
|
|
select GENERIC_CLOCKEVENTS
|
|
select GENERIC_IRQ_CHIP
|
|
select HAVE_SMP
|
|
select PINCTRL
|
|
select PINCTRL_SUNXI
|
|
select RESET_CONTROLLER
|
|
select SPARSE_IRQ
|
|
select SUN4I_TIMER
|