linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 13004/13311] drivers/gpio/gpio-hisi.c:257:28: warning: variable 'clr' set but not used
@ 2020-12-16 14:57 kernel test robot
  2020-12-16 20:55 ` Linus Walleij
  0 siblings, 1 reply; 2+ messages in thread
From: kernel test robot @ 2020-12-16 14:57 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: kbuild-all, Linux Memory Management List, Linus Walleij

[-- Attachment #1: Type: text/plain, Size: 6701 bytes --]

Hi Andy,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   9317f948b0b188b8d2fded75957e6d42c460df1b
commit: 48695a8096ab2edeeed1b9b6e359d21f13c50a70 [13004/13311] gpio: hisi: Do not require ACPI for COMPILE_TEST
config: openrisc-randconfig-r032-20201216 (attached as .config)
compiler: or1k-linux-gcc (GCC) 9.3.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/next/linux-next.git/commit/?id=48695a8096ab2edeeed1b9b6e359d21f13c50a70
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout 48695a8096ab2edeeed1b9b6e359d21f13c50a70
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=openrisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   drivers/gpio/gpio-hisi.c: In function 'hisi_gpio_probe':
>> drivers/gpio/gpio-hisi.c:257:28: warning: variable 'clr' set but not used [-Wunused-but-set-variable]
     257 |  void __iomem *dat, *set, *clr;
         |                            ^~~
>> drivers/gpio/gpio-hisi.c:257:22: warning: variable 'set' set but not used [-Wunused-but-set-variable]
     257 |  void __iomem *dat, *set, *clr;
         |                      ^~~
>> drivers/gpio/gpio-hisi.c:257:16: warning: variable 'dat' set but not used [-Wunused-but-set-variable]
     257 |  void __iomem *dat, *set, *clr;
         |                ^~~


vim +/clr +257 drivers/gpio/gpio-hisi.c

356b01a986a5550 Luo Jiaxing 2020-12-14  253  
356b01a986a5550 Luo Jiaxing 2020-12-14  254  static int hisi_gpio_probe(struct platform_device *pdev)
356b01a986a5550 Luo Jiaxing 2020-12-14  255  {
356b01a986a5550 Luo Jiaxing 2020-12-14  256  	struct device *dev = &pdev->dev;
356b01a986a5550 Luo Jiaxing 2020-12-14 @257  	void __iomem *dat, *set, *clr;
356b01a986a5550 Luo Jiaxing 2020-12-14  258  	struct hisi_gpio *hisi_gpio;
356b01a986a5550 Luo Jiaxing 2020-12-14  259  	int port_num;
356b01a986a5550 Luo Jiaxing 2020-12-14  260  	int ret;
356b01a986a5550 Luo Jiaxing 2020-12-14  261  
356b01a986a5550 Luo Jiaxing 2020-12-14  262  	/*
356b01a986a5550 Luo Jiaxing 2020-12-14  263  	 * One GPIO controller own one port currently,
356b01a986a5550 Luo Jiaxing 2020-12-14  264  	 * if we get more from ACPI table, return error.
356b01a986a5550 Luo Jiaxing 2020-12-14  265  	 */
356b01a986a5550 Luo Jiaxing 2020-12-14  266  	port_num = device_get_child_node_count(dev);
356b01a986a5550 Luo Jiaxing 2020-12-14  267  	if (WARN_ON(port_num != 1))
356b01a986a5550 Luo Jiaxing 2020-12-14  268  		return -ENODEV;
356b01a986a5550 Luo Jiaxing 2020-12-14  269  
356b01a986a5550 Luo Jiaxing 2020-12-14  270  	hisi_gpio = devm_kzalloc(dev, sizeof(*hisi_gpio), GFP_KERNEL);
356b01a986a5550 Luo Jiaxing 2020-12-14  271  	if (!hisi_gpio)
356b01a986a5550 Luo Jiaxing 2020-12-14  272  		return -ENOMEM;
356b01a986a5550 Luo Jiaxing 2020-12-14  273  
356b01a986a5550 Luo Jiaxing 2020-12-14  274  	hisi_gpio->reg_base = devm_platform_ioremap_resource(pdev, 0);
356b01a986a5550 Luo Jiaxing 2020-12-14  275  	if (IS_ERR(hisi_gpio->reg_base))
356b01a986a5550 Luo Jiaxing 2020-12-14  276  		return PTR_ERR(hisi_gpio->reg_base);
356b01a986a5550 Luo Jiaxing 2020-12-14  277  
356b01a986a5550 Luo Jiaxing 2020-12-14  278  	hisi_gpio_get_pdata(dev, hisi_gpio);
356b01a986a5550 Luo Jiaxing 2020-12-14  279  
356b01a986a5550 Luo Jiaxing 2020-12-14  280  	hisi_gpio->dev = dev;
356b01a986a5550 Luo Jiaxing 2020-12-14  281  
356b01a986a5550 Luo Jiaxing 2020-12-14  282  	dat = hisi_gpio->reg_base + HISI_GPIO_EXT_PORT_WX;
356b01a986a5550 Luo Jiaxing 2020-12-14  283  	set = hisi_gpio->reg_base + HISI_GPIO_SWPORT_DR_SET_WX;
356b01a986a5550 Luo Jiaxing 2020-12-14  284  	clr = hisi_gpio->reg_base + HISI_GPIO_SWPORT_DR_CLR_WX;
356b01a986a5550 Luo Jiaxing 2020-12-14  285  
356b01a986a5550 Luo Jiaxing 2020-12-14  286  	ret = bgpio_init(&hisi_gpio->chip, hisi_gpio->dev, 0x4,
356b01a986a5550 Luo Jiaxing 2020-12-14  287  			 hisi_gpio->reg_base + HISI_GPIO_EXT_PORT_WX,
356b01a986a5550 Luo Jiaxing 2020-12-14  288  			 hisi_gpio->reg_base + HISI_GPIO_SWPORT_DR_SET_WX,
356b01a986a5550 Luo Jiaxing 2020-12-14  289  			 hisi_gpio->reg_base + HISI_GPIO_SWPORT_DR_CLR_WX,
356b01a986a5550 Luo Jiaxing 2020-12-14  290  			 hisi_gpio->reg_base + HISI_GPIO_SWPORT_DDR_SET_WX,
356b01a986a5550 Luo Jiaxing 2020-12-14  291  			 hisi_gpio->reg_base + HISI_GPIO_SWPORT_DDR_CLR_WX,
356b01a986a5550 Luo Jiaxing 2020-12-14  292  			 BGPIOF_NO_SET_ON_INPUT);
356b01a986a5550 Luo Jiaxing 2020-12-14  293  	if (ret) {
356b01a986a5550 Luo Jiaxing 2020-12-14  294  		dev_err(dev, "failed to init, ret = %d\n", ret);
356b01a986a5550 Luo Jiaxing 2020-12-14  295  		return ret;
356b01a986a5550 Luo Jiaxing 2020-12-14  296  	}
356b01a986a5550 Luo Jiaxing 2020-12-14  297  
356b01a986a5550 Luo Jiaxing 2020-12-14  298  	hisi_gpio->chip.set_config = hisi_gpio_set_config;
356b01a986a5550 Luo Jiaxing 2020-12-14  299  	hisi_gpio->chip.ngpio = hisi_gpio->line_num;
356b01a986a5550 Luo Jiaxing 2020-12-14  300  	hisi_gpio->chip.bgpio_dir_unreadable = 1;
356b01a986a5550 Luo Jiaxing 2020-12-14  301  	hisi_gpio->chip.base = -1;
356b01a986a5550 Luo Jiaxing 2020-12-14  302  
356b01a986a5550 Luo Jiaxing 2020-12-14  303  	if (hisi_gpio->irq > 0)
356b01a986a5550 Luo Jiaxing 2020-12-14  304  		hisi_gpio_init_irq(hisi_gpio);
356b01a986a5550 Luo Jiaxing 2020-12-14  305  
356b01a986a5550 Luo Jiaxing 2020-12-14  306  	ret = devm_gpiochip_add_data(dev, &hisi_gpio->chip, hisi_gpio);
356b01a986a5550 Luo Jiaxing 2020-12-14  307  	if (ret) {
356b01a986a5550 Luo Jiaxing 2020-12-14  308  		dev_err(dev, "failed to register gpiochip, ret = %d\n", ret);
356b01a986a5550 Luo Jiaxing 2020-12-14  309  		return ret;
356b01a986a5550 Luo Jiaxing 2020-12-14  310  	}
356b01a986a5550 Luo Jiaxing 2020-12-14  311  
356b01a986a5550 Luo Jiaxing 2020-12-14  312  	return 0;
356b01a986a5550 Luo Jiaxing 2020-12-14  313  }
356b01a986a5550 Luo Jiaxing 2020-12-14  314  

:::::: The code at line 257 was first introduced by commit
:::::: 356b01a986a5550ee16dd0b85306c6741f2d02d5 gpio: gpio-hisi: Add HiSilicon GPIO support

:::::: TO: Luo Jiaxing <luojiaxing@huawei.com>
:::::: CC: Linus Walleij <linus.walleij@linaro.org>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 35991 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [linux-next:master 13004/13311] drivers/gpio/gpio-hisi.c:257:28: warning: variable 'clr' set but not used
  2020-12-16 14:57 [linux-next:master 13004/13311] drivers/gpio/gpio-hisi.c:257:28: warning: variable 'clr' set but not used kernel test robot
@ 2020-12-16 20:55 ` Linus Walleij
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Walleij @ 2020-12-16 20:55 UTC (permalink / raw)
  To: kernel test robot
  Cc: Andy Shevchenko, kbuild-all, Linux Memory Management List

On Wed, Dec 16, 2020 at 3:57 PM kernel test robot <lkp@intel.com> wrote:

> Hi Andy,
>
> First bad commit (maybe != root cause):

YEah definitely not. I will fix this in the original commit instead.

Yours,
Linus Walleij


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-16 20:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-16 14:57 [linux-next:master 13004/13311] drivers/gpio/gpio-hisi.c:257:28: warning: variable 'clr' set but not used kernel test robot
2020-12-16 20:55 ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).