diff mbox series

[1/3] x86: apuv2: remove unused variable

Message ID 20190304201930.1622839-1-arnd@arndb.de
State Accepted
Commit deb63b0b812f0ef6c37484f23ee3de4b115f7bb2
Headers show
Series [1/3] x86: apuv2: remove unused variable | expand

Commit Message

Arnd Bergmann March 4, 2019, 8:19 p.m. UTC
The driver was newly introduced but the version that got merged
produces a harmless compiler warning:

drivers/platform/x86/pcengines-apuv2.c: In function 'apu_board_init':
drivers/platform/x86/pcengines-apuv2.c:211:6: error: unused variable 'rc' [-Werror=unused-variable]

Remove the evidently useless variable.

Fixes: f8eb0235f659 ("x86: pcengines apuv2 gpio/leds/keys platform driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 drivers/platform/x86/pcengines-apuv2.c | 1 -
 1 file changed, 1 deletion(-)

-- 
2.20.0

Comments

Enrico Weigelt, metux IT consult March 5, 2019, 12:03 a.m. UTC | #1
On 04.03.19 21:19, Arnd Bergmann wrote:
> LEDS_GPIO can only be selected when LEDS_CLASS is already enabled:

> 

> WARNING: unmet direct dependencies detected for LEDS_GPIO

>   Depends on [m]: NEW_LEDS [=y] && LEDS_CLASS [=m] && (GPIOLIB [=y] || COMPILE_TEST [=y])

>   Selected by [y]:

>   - PCENGINES_APU2 [=y] && X86 [=y] && X86_PLATFORM_DEVICES [=y] && INPUT_KEYBOARD [=y]

> 

> Fixes: f8eb0235f659 ("x86: pcengines apuv2 gpio/leds/keys platform driver")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> ---

>  drivers/platform/x86/Kconfig | 1 +

>  1 file changed, 1 insertion(+)

> 

> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig

> index 4d65d37b0c86..d64529352a9c 100644

> --- a/drivers/platform/x86/Kconfig

> +++ b/drivers/platform/x86/Kconfig

> @@ -1308,6 +1308,7 @@ config PCENGINES_APU2

>  	depends on INPUT && INPUT_KEYBOARD

>  	select GPIO_AMD_FCH

>  	select KEYBOARD_GPIO_POLLED

> +	select LEDS_CLASS

>  	select LEDS_GPIO

>  	help

>  	  This driver provides support for the front button and LEDs on

> 


ACK. Just was about to post the same :)

Reviewed-by: Enrico Weigelt, metux It consult <info@metux.net>



thx.

--mtx

-- 
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287
Enrico Weigelt, metux IT consult March 5, 2019, 12:04 a.m. UTC | #2
On 04.03.19 21:19, Arnd Bergmann wrote:

> diff --git a/drivers/platform/x86/pcengines-apuv2.c b/drivers/platform/x86/pcengines-apuv2.c

> index dcb084f6b892..c1ca931e1fab 100644

> --- a/drivers/platform/x86/pcengines-apuv2.c

> +++ b/drivers/platform/x86/pcengines-apuv2.c

> @@ -208,7 +208,6 @@ static struct platform_device * __init apu_create_pdev(

>  

>  static int __init apu_board_init(void)

>  {

> -	int rc;

>  	const struct dmi_system_id *id;

>  

>  	id = dmi_first_match(apu_gpio_dmi_table);

> 


ACK.

Reviewed-By: Enrico Weigelt, metux IT consult <info@metux.net>



thx
--mtx

-- 
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287
Enrico Weigelt, metux IT consult March 5, 2019, 12:18 a.m. UTC | #3
On 04.03.19 21:19, Arnd Bergmann wrote:

> This could be fixed using either a dependency or a 'select' statement.

> I'm chosen 'depends on' here since it is simpler has a lower risk of

> introducing circular dependencies.


I'd rather prefer using 'select'.

Otherwise the driver won't appear at all if INPUT or INPUT_KEYBOARD
aren't enabled (eg. when you start w/ minimal config - which I do
frequently), and people have a hard time actually finding/enabling it.


--mtx

-- 
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287
Arnd Bergmann March 5, 2019, 8:23 a.m. UTC | #4
On Tue, Mar 5, 2019 at 1:18 AM Enrico Weigelt, metux IT consult
<lkml@metux.net> wrote:
>

> On 04.03.19 21:19, Arnd Bergmann wrote:

>

> > This could be fixed using either a dependency or a 'select' statement.

> > I'm chosen 'depends on' here since it is simpler has a lower risk of

> > introducing circular dependencies.

>

> I'd rather prefer using 'select'.

>

> Otherwise the driver won't appear at all if INPUT or INPUT_KEYBOARD

> aren't enabled (eg. when you start w/ minimal config - which I do

> frequently), and people have a hard time actually finding/enabling it.


No, that wouldn't be good here. In effect that means that with INPUT disabled,
most of the x86 platform drivers are disabled, until you enable the
PCENGINES_APU2 symbol, which then ends up showing all the other
symbols at once, and changing them to their default states.

Another problem is that you likely run into circular dependency chains
after trying that. The best practice for select vs. depends are

1. try to use 'depends on' if you can
2. use 'select' on hidden symbols, but not user visible ones
3. for each symbol, use either 'depends on'  or 'select' from all other
    drivers that need it, and do it consistently
4. never select entire subsystems, only helper code.

Those are sometimes at odds. I used 'select' for the LEDS code
because of 3. and 4, even though that goes against 2. For INPUT,
there is no real debate though.

   Arnd
Andy Shevchenko March 5, 2019, 1:47 p.m. UTC | #5
On Tue, Mar 5, 2019 at 2:04 AM Enrico Weigelt, metux IT consult
<lkml@metux.net> wrote:
>

> On 04.03.19 21:19, Arnd Bergmann wrote:

>

> > diff --git a/drivers/platform/x86/pcengines-apuv2.c b/drivers/platform/x86/pcengines-apuv2.c

> > index dcb084f6b892..c1ca931e1fab 100644

> > --- a/drivers/platform/x86/pcengines-apuv2.c

> > +++ b/drivers/platform/x86/pcengines-apuv2.c

> > @@ -208,7 +208,6 @@ static struct platform_device * __init apu_create_pdev(

> >

> >  static int __init apu_board_init(void)

> >  {

> > -     int rc;

> >       const struct dmi_system_id *id;

> >

> >       id = dmi_first_match(apu_gpio_dmi_table);

> >

>

> ACK.

>

> Reviewed-By: Enrico Weigelt, metux IT consult <info@metux.net>


Patches from here presumably should go to v5.1-rc1 or, if Linus would
do it, through his tree.

Linus, I'm fine with what Randy and Arnd sent for fixing this driver.

>

>

> thx

> --mtx

>

> --

> Enrico Weigelt, metux IT consult

> Free software and Linux embedded engineering

> info@metux.net -- +49-151-27565287




-- 
With Best Regards,
Andy Shevchenko
Enrico Weigelt, metux IT consult March 5, 2019, 1:50 p.m. UTC | #6
On 05.03.19 09:23, Arnd Bergmann wrote:

(CC'ing kbuild maintainer + list, hoping for better ideas :)


> No, that wouldn't be good here. In effect that means that with INPUT disabled,

> most of the x86 platform drivers are disabled, until you enable the

> PCENGINES_APU2 symbol, which then ends up showing all the other

> symbols at once, and changing them to their default states.


Okay, I didn't consider the defaults.

Maybe we should talk about step by step getting away from these defaults
(perhaps move them to the defconfigs ?) on a broader scale ... but yeah,
that's far out of scope now.

So, you've conviced me.
Add me to Reviewed-By to your patches and forget about mine.

> Another problem is that you likely run into circular dependency chains

> after trying that. The best practice for select vs. depends are


hmm, if circular deps happen, wouldn't that mean we've got some deeper
problems in here ? IMHO, dependencies should always form a DAG (except
for some really rare cases).

Do you recall any actual problem w/ input vs gpio vs. drivers ?
I'd like to have a closer look at it.

> 1. try to use 'depends on' if you can


Well, this has the unpleasant side effect that we often have to enable
a lot of things, just to even see the individual driver. For people who
just wanna configure a kernel for their board, this is a bit nasty.

But, okay, I'm going to do this w/ my own tool - I've written a small
tool that allows easy kernel reconfiguration on a higher level: you
can just pick some board templates and enable high level features like
eth, gpu, etc - it automatically creates a .config for you. I'm going
announce it on lkml soon.


--mtx

-- 
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287
Enrico Weigelt, metux IT consult March 7, 2019, 12:10 a.m. UTC | #7
On 05.03.19 14:56, Andy Shevchenko wrote:
> 

> Darren gave a talk about merging kernel configs to get something like

> you want to.

> This tool is quite long already lying around. merge_config.sh in your

> kernel source tree.


Yes, that's similar to how some distros (eg. yocto) do it.

But my requirements are a bit more complex:

In my final meta-config, I just wanna say:

* i have board A (possibly multiple boards)
* i need features X, Y, Z (eg. eth, display, can, ext4, acl, ...)

And that shall be all to generate a minimal config for exactly those
requirements.

Doing that by just putting config snippets together, quickly turns into
a maintenance hell. At least you'd need recursive dependencies and some
if/else logic.

That's why I've written kmct:

https://github.com/metux/kmct


--mtx

-- 
Enrico Weigelt, metux IT consult
Free software and Linux embedded engineering
info@metux.net -- +49-151-27565287
Darren Hart March 7, 2019, 7:03 a.m. UTC | #8
On Thu, Mar 07, 2019 at 01:10:13AM +0100, Enrico Weigelt, metux IT consult wrote:
> On 05.03.19 14:56, Andy Shevchenko wrote:

> > 

> > Darren gave a talk about merging kernel configs to get something like

> > you want to.

> > This tool is quite long already lying around. merge_config.sh in your

> > kernel source tree.

> 

> Yes, that's similar to how some distros (eg. yocto) do it.

> 


I wrote merge_config.sh to replace and simplify some of the yocto
tooling. With merge_config upstream, Yocto now uses it directly.

> But my requirements are a bit more complex:

> 

> In my final meta-config, I just wanna say:

> 

> * i have board A (possibly multiple boards)

> * i need features X, Y, Z (eg. eth, display, can, ext4, acl, ...)

> 

> And that shall be all to generate a minimal config for exactly those

> requirements.


That's also the goal of the Yocto configuration fragments, and is
possible with merge_config with a set of defined fragments.

> 

> Doing that by just putting config snippets together, quickly turns into

> a maintenance hell. At least you'd need recursive dependencies and some

> if/else logic.

> 

> That's why I've written kmct:

> 

> https://github.com/metux/kmct


I had a look, the README could benefit from a basic usage example.
Digging through it further, it appears that you are creating yaml files
which contain CONFIGs. The problem with this in my opinion is these are
kernel version specific, so you know have a lot of boiler plate yaml
wrapping kernel version specific CONFIG options which will slowly get
out of sync over time. This is the usual argument for keeping config
fragments together with the kernel - and why we do that in arch/*/config
for example.

Perhaps I'm missing your desired workflow though. I tend to find the
options I need and record them in a fragment, and save it off for later
to quickly be able to "make defconfig fragA.config fragB.config" etc. Is
what you're trying to do different?

-- 
Darren Hart
VMware Open Source Technology Center
Linus Walleij March 8, 2019, 9:05 a.m. UTC | #9
On Tue, Mar 5, 2019 at 1:09 AM Randy Dunlap <rdunlap@infradead.org> wrote:
> On 3/4/19 4:03 PM, Enrico Weigelt, metux IT consult wrote:

> > On 04.03.19 21:19, Arnd Bergmann wrote:

> >> LEDS_GPIO can only be selected when LEDS_CLASS is already enabled:

> >>

> >> WARNING: unmet direct dependencies detected for LEDS_GPIO

> >>   Depends on [m]: NEW_LEDS [=y] && LEDS_CLASS [=m] && (GPIOLIB [=y] || COMPILE_TEST [=y])

> >>   Selected by [y]:

> >>   - PCENGINES_APU2 [=y] && X86 [=y] && X86_PLATFORM_DEVICES [=y] && INPUT_KEYBOARD [=y]

> >>

> >> Fixes: f8eb0235f659 ("x86: pcengines apuv2 gpio/leds/keys platform driver")

> >> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> >> ---

> >>  drivers/platform/x86/Kconfig | 1 +

> >>  1 file changed, 1 insertion(+)

> >>

> >> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig

> >> index 4d65d37b0c86..d64529352a9c 100644

> >> --- a/drivers/platform/x86/Kconfig

> >> +++ b/drivers/platform/x86/Kconfig

> >> @@ -1308,6 +1308,7 @@ config PCENGINES_APU2

> >>      depends on INPUT && INPUT_KEYBOARD

> >>      select GPIO_AMD_FCH

> >>      select KEYBOARD_GPIO_POLLED

> >> +    select LEDS_CLASS

> >>      select LEDS_GPIO

> >>      help

> >>        This driver provides support for the front button and LEDs on

> >>

> >

> > ACK. Just was about to post the same :)

> >

> > Reviewed-by: Enrico Weigelt, metux It consult <info@metux.net>

> >

>

> Enrico, you were also cc-ed on this patch on Feb.25, 2019:

>

> https://marc.info/?l=linux-kernel&m=155113875310485&w=2


I applied Randy's more extensive patch.

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/platform/x86/pcengines-apuv2.c b/drivers/platform/x86/pcengines-apuv2.c
index dcb084f6b892..c1ca931e1fab 100644
--- a/drivers/platform/x86/pcengines-apuv2.c
+++ b/drivers/platform/x86/pcengines-apuv2.c
@@ -208,7 +208,6 @@  static struct platform_device * __init apu_create_pdev(
 
 static int __init apu_board_init(void)
 {
-	int rc;
 	const struct dmi_system_id *id;
 
 	id = dmi_first_match(apu_gpio_dmi_table);