2022-07-08 17:03:26

by Ben Dooks

[permalink] [raw]
Subject: [PATCH] reset: allow building of reset simple driver if expert config selected

If CONFIG_EXPERT is selected, allow selection of CONFIG_RESET_SIMPLE
if needed by the user.

Signed-off-by: Ben Dooks <[email protected]>
---
drivers/reset/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig
index 93c8d07ee328..f40d9bbb686a 100644
--- a/drivers/reset/Kconfig
+++ b/drivers/reset/Kconfig
@@ -200,7 +200,7 @@ config RESET_SCMI
firmware controlling all the reset signals.

config RESET_SIMPLE
- bool "Simple Reset Controller Driver" if COMPILE_TEST
+ bool "Simple Reset Controller Driver" if COMPILE_TEST || EXPERT
default ARCH_ASPEED || ARCH_BCM4908 || ARCH_BITMAIN || ARCH_REALTEK || ARCH_STM32 || (ARCH_INTEL_SOCFPGA && ARM64) || ARCH_SUNXI || ARC
help
This enables a simple reset controller driver for reset lines that
--
2.35.1


2022-07-11 12:59:10

by Philipp Zabel

[permalink] [raw]
Subject: Re: [PATCH] reset: allow building of reset simple driver if expert config selected

Hi Ben,

On Fr, 2022-07-08 at 17:56 +0100, Ben Dooks wrote:
> If CONFIG_EXPERT is selected, allow selection of CONFIG_RESET_SIMPLE
> if needed by the user.
>
> Signed-off-by: Ben Dooks <[email protected]>

Thank you, applied to reset/next.

regards
Philipp