diff mbox series

pinctrl: sprd: Fix the kconfig warning

Message ID eeb12d7843fb06f80e19f98eb25711231c3b610f.1583205650.git.baolin.wang7@gmail.com
State New
Headers show
Series pinctrl: sprd: Fix the kconfig warning | expand

Commit Message

Baolin Wang March 3, 2020, 3:32 a.m. UTC
On X86 plaform, if the CONFIG_OF is not selected, and set the
CONFIG_SPRD_SC9860 as 'm', that will cause below waring:

WARNING: unmet direct dependencies detected for PINCTRL_SPRD
  Depends on [n]: PINCTRL [=y] && OF [=n] && (ARCH_SPRD || COMPILE_TEST [=y])
  Selected by [m]:
  - PINCTRL_SPRD_SC9860 [=m] && PINCTRL [=y]

Thus move the configuration dependency under CONFIG_PINCTRL_SPRD_SC9860
to fix the warning.

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>
---
 drivers/pinctrl/sprd/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Randy Dunlap March 3, 2020, 4:45 a.m. UTC | #1
On 3/2/20 7:32 PM, Baolin Wang wrote:
> On X86 plaform, if the CONFIG_OF is not selected, and set the
> CONFIG_SPRD_SC9860 as 'm', that will cause below waring:
> 
> WARNING: unmet direct dependencies detected for PINCTRL_SPRD
>   Depends on [n]: PINCTRL [=y] && OF [=n] && (ARCH_SPRD || COMPILE_TEST [=y])
>   Selected by [m]:
>   - PINCTRL_SPRD_SC9860 [=m] && PINCTRL [=y]
> 
> Thus move the configuration dependency under CONFIG_PINCTRL_SPRD_SC9860
> to fix the warning.
> 
> Reported-by: Randy Dunlap <rdunlap@infradead.org>
> Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>

Works for me.  Thanks.

Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested


> ---
>  drivers/pinctrl/sprd/Kconfig | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/pinctrl/sprd/Kconfig b/drivers/pinctrl/sprd/Kconfig
> index c9e7f0b..eef35d0 100644
> --- a/drivers/pinctrl/sprd/Kconfig
> +++ b/drivers/pinctrl/sprd/Kconfig
> @@ -4,9 +4,7 @@
>  #
>  
>  config PINCTRL_SPRD
> -	tristate "Spreadtrum pinctrl driver"
> -	depends on OF
> -	depends on ARCH_SPRD || COMPILE_TEST
> +	tristate
>  	select PINMUX
>  	select PINCONF
>  	select GENERIC_PINCONF
> @@ -16,6 +14,8 @@ config PINCTRL_SPRD
>  
>  config PINCTRL_SPRD_SC9860
>  	tristate "Spreadtrum SC9860 pinctrl driver"
> +	depends on OF
> +	depends on ARCH_SPRD || COMPILE_TEST
>  	select PINCTRL_SPRD
>  	help
>  	  Say Y here to enable Spreadtrum SC9860 pinctrl driver
>
Baolin Wang March 3, 2020, 5:02 a.m. UTC | #2
On Tue, Mar 3, 2020 at 12:45 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> On 3/2/20 7:32 PM, Baolin Wang wrote:
> > On X86 plaform, if the CONFIG_OF is not selected, and set the
> > CONFIG_SPRD_SC9860 as 'm', that will cause below waring:
> >
> > WARNING: unmet direct dependencies detected for PINCTRL_SPRD
> >   Depends on [n]: PINCTRL [=y] && OF [=n] && (ARCH_SPRD || COMPILE_TEST [=y])
> >   Selected by [m]:
> >   - PINCTRL_SPRD_SC9860 [=m] && PINCTRL [=y]
> >
> > Thus move the configuration dependency under CONFIG_PINCTRL_SPRD_SC9860
> > to fix the warning.
> >
> > Reported-by: Randy Dunlap <rdunlap@infradead.org>
> > Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>
>
> Works for me.  Thanks.
>
> Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested

Thanks for your reporting and testing.
Linus Walleij March 3, 2020, 12:46 p.m. UTC | #3
On Tue, Mar 3, 2020 at 4:32 AM Baolin Wang <baolin.wang7@gmail.com> wrote:

> On X86 plaform, if the CONFIG_OF is not selected, and set the
> CONFIG_SPRD_SC9860 as 'm', that will cause below waring:
>
> WARNING: unmet direct dependencies detected for PINCTRL_SPRD
>   Depends on [n]: PINCTRL [=y] && OF [=n] && (ARCH_SPRD || COMPILE_TEST [=y])
>   Selected by [m]:
>   - PINCTRL_SPRD_SC9860 [=m] && PINCTRL [=y]
>
> Thus move the configuration dependency under CONFIG_PINCTRL_SPRD_SC9860
> to fix the warning.
>
> Reported-by: Randy Dunlap <rdunlap@infradead.org>
> Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>

Oh there is a fix.

Patch applied, thanks!

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/pinctrl/sprd/Kconfig b/drivers/pinctrl/sprd/Kconfig
index c9e7f0b..eef35d0 100644
--- a/drivers/pinctrl/sprd/Kconfig
+++ b/drivers/pinctrl/sprd/Kconfig
@@ -4,9 +4,7 @@ 
 #
 
 config PINCTRL_SPRD
-	tristate "Spreadtrum pinctrl driver"
-	depends on OF
-	depends on ARCH_SPRD || COMPILE_TEST
+	tristate
 	select PINMUX
 	select PINCONF
 	select GENERIC_PINCONF
@@ -16,6 +14,8 @@  config PINCTRL_SPRD
 
 config PINCTRL_SPRD_SC9860
 	tristate "Spreadtrum SC9860 pinctrl driver"
+	depends on OF
+	depends on ARCH_SPRD || COMPILE_TEST
 	select PINCTRL_SPRD
 	help
 	  Say Y here to enable Spreadtrum SC9860 pinctrl driver