mirror of https://gitee.com/openkylin/linux.git
reset: fix Kconfig menu to include reset drivers in sub-menu
In "make menuconfig", reset drivers are currently lined up together with the reset sub-system menu, like this: -*- Reset Controller Support ---- < > Hi6220 Reset Driver (It also means, the menu "Reset Controller Support" is always empty.) "Hi6220 Reset Driver" should go into the sub-menu of the "Reset Controller Support". Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
This commit is contained in:
parent
da1fda2a23
commit
998cd4637f
|
@ -12,8 +12,12 @@ menuconfig RESET_CONTROLLER
|
||||||
|
|
||||||
If unsure, say no.
|
If unsure, say no.
|
||||||
|
|
||||||
|
if RESET_CONTROLLER
|
||||||
|
|
||||||
config RESET_OXNAS
|
config RESET_OXNAS
|
||||||
bool
|
bool
|
||||||
|
|
||||||
source "drivers/reset/sti/Kconfig"
|
source "drivers/reset/sti/Kconfig"
|
||||||
source "drivers/reset/hisilicon/Kconfig"
|
source "drivers/reset/hisilicon/Kconfig"
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
|
@ -2,7 +2,6 @@ if ARCH_STI
|
||||||
|
|
||||||
config STI_RESET_SYSCFG
|
config STI_RESET_SYSCFG
|
||||||
bool
|
bool
|
||||||
select RESET_CONTROLLER
|
|
||||||
|
|
||||||
config STIH415_RESET
|
config STIH415_RESET
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in New Issue