2022-02-14 19:43:09

by Jonathan Cameron

[permalink] [raw]
Subject: Re: drivers/iio/adc/xilinx-ams.c:1195:21: error: unused variable 'ams'

On Mon, 14 Feb 2022 22:47:14 +0800
kernel test robot <[email protected]> wrote:

> tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head: 754e0b0e35608ed5206d6a67a791563c631cec07
> commit: d5c70627a79455154f5f636096abe6fe57510605 iio: adc: Add Xilinx AMS driver
> date: 8 weeks ago
> config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20220214/[email protected]/config)
> compiler: sh4-linux-gcc (GCC) 11.2.0
> reproduce (this is a W=1 build):
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d5c70627a79455154f5f636096abe6fe57510605
> git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> git fetch --no-tags linus master
> git checkout d5c70627a79455154f5f636096abe6fe57510605
> # save the config file to linux build tree
> mkdir build_dir
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=sh SHELL=/bin/bash drivers/iio/adc/ drivers/net/ethernet/freescale/
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <[email protected]>

I'm very tempted to say won't fix on this at least not in the IIO code.

The issue I think is the stub for iounmap on sh with no MMU not using the argument because it's
defined as a while loop rather than as an empty static inline function which is what we'd
get it it wasn't defined at all (AFAICT).

If anyone wants to take this on, my guess is drop
https://elixir.bootlin.com/linux/latest/source/arch/sh/include/asm/io.h#L274
and see if everything still works and the warning goes away.

+CC linux-sh for inputs.

Thanks,

Jonathan


>
> All errors (new ones prefixed by >>):
>
> drivers/iio/adc/xilinx-ams.c: In function 'ams_iounmap_ps':
> >> drivers/iio/adc/xilinx-ams.c:1195:21: error: unused variable 'ams' [-Werror=unused-variable]
> 1195 | struct ams *ams = data;
> | ^~~
> drivers/iio/adc/xilinx-ams.c: In function 'ams_iounmap_pl':
> drivers/iio/adc/xilinx-ams.c:1202:21: error: unused variable 'ams' [-Werror=unused-variable]
> 1202 | struct ams *ams = data;
> | ^~~
> cc1: all warnings being treated as errors
>
>
> vim +/ams +1195 drivers/iio/adc/xilinx-ams.c
>
> 1192
> 1193 static void ams_iounmap_ps(void *data)
> 1194 {
> > 1195 struct ams *ams = data;
> 1196
> 1197 iounmap(ams->ps_base);
> 1198 }
> 1199
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/[email protected]


2022-02-15 09:50:42

by Geert Uytterhoeven

[permalink] [raw]
Subject: Re: drivers/iio/adc/xilinx-ams.c:1195:21: error: unused variable 'ams'

Hi Jonathan.

On Mon, Feb 14, 2022 at 8:17 PM Jonathan Cameron
<[email protected]> wrote:
> On Mon, 14 Feb 2022 22:47:14 +0800
> kernel test robot <[email protected]> wrote:
>
> > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > head: 754e0b0e35608ed5206d6a67a791563c631cec07
> > commit: d5c70627a79455154f5f636096abe6fe57510605 iio: adc: Add Xilinx AMS driver
> > date: 8 weeks ago
> > config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20220214/[email protected]/config)
> > compiler: sh4-linux-gcc (GCC) 11.2.0
> > reproduce (this is a W=1 build):
> > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > chmod +x ~/bin/make.cross
> > # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d5c70627a79455154f5f636096abe6fe57510605
> > git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> > git fetch --no-tags linus master
> > git checkout d5c70627a79455154f5f636096abe6fe57510605
> > # save the config file to linux build tree
> > mkdir build_dir
> > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=sh SHELL=/bin/bash drivers/iio/adc/ drivers/net/ethernet/freescale/
> >
> > If you fix the issue, kindly add following tag as appropriate
> > Reported-by: kernel test robot <[email protected]>
>
> I'm very tempted to say won't fix on this at least not in the IIO code.
>
> The issue I think is the stub for iounmap on sh with no MMU not using the argument because it's

Indeed.

> defined as a while loop rather than as an empty static inline function which is what we'd
> get it it wasn't defined at all (AFAICT).

We would get that only if <asm-generic/io.h> would be included...

> If anyone wants to take this on, my guess is drop
> https://elixir.bootlin.com/linux/latest/source/arch/sh/include/asm/io.h#L274
> and see if everything still works and the warning goes away.

Nope:

error: implicit declaration of function ‘iounmap’

> +CC linux-sh for inputs.

Thanks, I'll post a fix.

> > All errors (new ones prefixed by >>):
> >
> > drivers/iio/adc/xilinx-ams.c: In function 'ams_iounmap_ps':
> > >> drivers/iio/adc/xilinx-ams.c:1195:21: error: unused variable 'ams' [-Werror=unused-variable]
> > 1195 | struct ams *ams = data;
> > | ^~~
> > drivers/iio/adc/xilinx-ams.c: In function 'ams_iounmap_pl':
> > drivers/iio/adc/xilinx-ams.c:1202:21: error: unused variable 'ams' [-Werror=unused-variable]
> > 1202 | struct ams *ams = data;
> > | ^~~
> > cc1: all warnings being treated as errors

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected]

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds

2022-02-15 12:18:39

by Geert Uytterhoeven

[permalink] [raw]
Subject: Re: drivers/iio/adc/xilinx-ams.c:1195:21: error: unused variable 'ams'

On Tue, Feb 15, 2022 at 9:33 AM Geert Uytterhoeven <[email protected]> wrote:
> On Mon, Feb 14, 2022 at 8:17 PM Jonathan Cameron
> <[email protected]> wrote:
> > On Mon, 14 Feb 2022 22:47:14 +0800
> > kernel test robot <[email protected]> wrote:
> >
> > > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > > head: 754e0b0e35608ed5206d6a67a791563c631cec07
> > > commit: d5c70627a79455154f5f636096abe6fe57510605 iio: adc: Add Xilinx AMS driver
> > > date: 8 weeks ago
> > > config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20220214/[email protected]/config)
> > > compiler: sh4-linux-gcc (GCC) 11.2.0
> > > reproduce (this is a W=1 build):
> > > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > > chmod +x ~/bin/make.cross
> > > # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d5c70627a79455154f5f636096abe6fe57510605
> > > git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> > > git fetch --no-tags linus master
> > > git checkout d5c70627a79455154f5f636096abe6fe57510605
> > > # save the config file to linux build tree
> > > mkdir build_dir
> > > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=sh SHELL=/bin/bash drivers/iio/adc/ drivers/net/ethernet/freescale/
> > >
> > > If you fix the issue, kindly add following tag as appropriate
> > > Reported-by: kernel test robot <[email protected]>
> >
> > I'm very tempted to say won't fix on this at least not in the IIO code.
> >
> > The issue I think is the stub for iounmap on sh with no MMU not using the argument because it's
>
> Indeed.
>
> > defined as a while loop rather than as an empty static inline function which is what we'd
> > get it it wasn't defined at all (AFAICT).
>
> We would get that only if <asm-generic/io.h> would be included...
>
> > If anyone wants to take this on, my guess is drop
> > https://elixir.bootlin.com/linux/latest/source/arch/sh/include/asm/io.h#L274
> > and see if everything still works and the warning goes away.
>
> Nope:
>
> error: implicit declaration of function ‘iounmap’
>
> > +CC linux-sh for inputs.
>
> Thanks, I'll post a fix.

https://lore.kernel.org/r/4ed0a7a0d3fa912a5b44c451884818f2c138ef42.1644914600.git.geert+renesas@glider.be/

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected]

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds