For unknown reasons, we have to enable three symbols for a platform
to use a reset controller driver, otherwise we get a Kconfig
warning:
warning: (MACH_OX810SE) selects RESET_OXNAS which has unmet direct dependencies (RESET_CONTROLLER)
This selects the other two symbols for oxnas.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
arch/arm/mach-oxnas/Kconfig | 2 ++
1 file changed, 2 insertions(+)
@@ -11,11 +11,13 @@ if ARCH_OXNASconfigMACH_OX810SEbool"Support OX810SE Based Products"+selectARCH_HAS_RESET_CONTROLLERselectARM_TIMER_SP804selectCOMMON_CLK_OXNASselectCPU_ARM926TselectMFD_SYSCONselectPINCTRL_OXNAS+selectRESET_CONTROLLERselectRESET_OXNASselectVERSATILE_FPGA_IRQhelp
For unknown reasons, we have to enable three symbols for a platform
to use a reset controller driver, otherwise we get a Kconfig
warning:
warning: (MACH_OX810SE) selects RESET_OXNAS which has unmet direct dependencies (RESET_CONTROLLER)
This selects the other two symbols for oxnas.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
arch/arm/mach-oxnas/Kconfig | 2 ++
1 file changed, 2 insertions(+)
Same here, it should be selected by ARCH_HAS_RESET_CONTROLLER
select RESET_OXNAS
select VERSATILE_FPGA_IRQ
help
--
2.9.0
If it makes the warning disappear,
Acked-by: Neil Armstrong <redacted>
In this current form it will fail to apply of arm-soc for-next branch
since Olof applied my TIMER_SP804 replacement.
Thanks,
Neil
For unknown reasons, we have to enable three symbols for a platform
to use a reset controller driver, otherwise we get a Kconfig
warning:
warning: (MACH_OX810SE) selects RESET_OXNAS which has unmet direct dependencies (RESET_CONTROLLER)
This selects the other two symbols for oxnas.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
arch/arm/mach-oxnas/Kconfig | 2 ++
1 file changed, 2 insertions(+)
Same here, it should be selected by ARCH_HAS_RESET_CONTROLLER
I actually did a patch at one point to kill off ARCH_HAS_RESET_CONTROLLER
completely, it's not really needed at all, but that is a larger rework
so (I think) I never submitted it.
Arnd