linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Bhaktipriya Shridhar
	<bhaktipriya96-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: kbuild-all-JC7UmRfGjtg@public.gmane.org,
	Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] spi: spi-topcliff-pch: Remove deprecated create_singlethread_workqueue
Date: Sat, 2 Jul 2016 20:24:14 +0800	[thread overview]
Message-ID: <201607022003.aKXFDba1%fengguang.wu@intel.com> (raw)
In-Reply-To: <20160702085334.GA28440@Karyakshetra>

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

Hi,

[auto build test WARNING on spi/for-next]
[also build test WARNING on v4.7-rc5 next-20160701]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Bhaktipriya-Shridhar/spi-spi-topcliff-pch-Remove-deprecated-create_singlethread_workqueue/20160702-191734
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
config: ia64-allmodconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 4.9.0
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=ia64 

All warnings (new ones prefixed by >>):

   drivers/spi/spi-topcliff-pch.c: In function 'pch_spi_get_resources':
>> drivers/spi/spi-topcliff-pch.c:1283:1: warning: label 'err_return' defined but not used [-Wunused-label]
    err_return:
    ^

vim +/err_return +1283 drivers/spi/spi-topcliff-pch.c

e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1267  
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1268  static int pch_spi_get_resources(struct pch_spi_board_data *board_dat,
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1269  				 struct pch_spi_data *data)
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1270  {
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1271  	int retval = 0;
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1272  
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1273  	dev_dbg(&board_dat->pdev->dev, "%s ENTRY\n", __func__);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1274  
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1275  
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1276  	/* reset PCH SPI h/w */
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1277  	pch_spi_reset(data->master);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1278  	dev_dbg(&board_dat->pdev->dev,
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1279  		"%s pch_spi_reset invoked successfully\n", __func__);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1280  
65308c46 drivers/spi/spi_topcliff_pch.c Grant Likely    2010-09-29  1281  	dev_dbg(&board_dat->pdev->dev, "%s data->irq_reg_sts=true\n", __func__);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1282  
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08 @1283  err_return:
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1284  	if (retval != 0) {
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1285  		dev_err(&board_dat->pdev->dev,
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1286  			"%s FAIL:invoking pch_spi_free_resources\n", __func__);
f016aeb6 drivers/spi/spi-topcliff-pch.c Tomoya MORINAGA 2011-06-07  1287  		pch_spi_free_resources(board_dat, data);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1288  	}
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1289  
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1290  	dev_dbg(&board_dat->pdev->dev, "%s Return=%d\n", __func__, retval);
e8b17b5b drivers/spi/spi_topcliff_pch.c Masayuki Ohtake 2010-10-08  1291  

:::::: The code at line 1283 was first introduced by commit
:::::: e8b17b5b3f30252b5470dbbf54bc251ddc7fac17 spi/topcliff: Add topcliff platform controller hub (PCH) spi bus driver

:::::: TO: Masayuki Ohtake <masa-korg-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org>
:::::: CC: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 43710 bytes --]

  parent reply	other threads:[~2016-07-02 12:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-02  8:53 [PATCH] spi: spi-topcliff-pch: Remove deprecated create_singlethread_workqueue Bhaktipriya Shridhar
2016-07-02 11:42 ` Tejun Heo
2016-07-02 12:24 ` kbuild test robot [this message]
     [not found]   ` <201607022003.aKXFDba1%fengguang.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-07-10 14:12     ` [PATCH v2] " Bhaktipriya Shridhar
     [not found]       ` <1468159933-28099-1-git-send-email-bhaktipriya96-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-07-12 18:44         ` Tejun Heo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201607022003.aKXFDba1%fengguang.wu@intel.com \
    --to=lkp-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=bhaktipriya96-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=kbuild-all-JC7UmRfGjtg@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).