All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
	linux-samsung-soc@vger.kernel.org, linux-pm@vger.kernel.org,
	Vinod Koul <vinod.koul@intel.com>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Inki Dae <inki.dae@samsung.com>,
	kbuild-all@01.org, dmaengine@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCH v2 2/4] dmaengine: Forward slave device pointer to of_xlate callback
Date: Mon, 9 Jan 2017 23:11:10 +0800	[thread overview]
Message-ID: <201701092339.Or2Yo06w%fengguang.wu@intel.com> (raw)
In-Reply-To: <1483970598-6191-3-git-send-email-m.szyprowski@samsung.com>

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

Hi Marek,

[auto build test ERROR on next-20170106]
[also build test ERROR on v4.10-rc3]
[cannot apply to linus/master linux/master xlnx/master v4.9-rc8 v4.9-rc7 v4.9-rc6]
[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/Marek-Szyprowski/dmaengine-pl330-remove-pdata-based-initialization/20170109-224452
config: i386-randconfig-x001-201702 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

   drivers/dma/dw/platform.c: In function 'dw_dma_of_xlate':
>> drivers/dma/dw/platform.c:35:22: error: 'slave' redeclared as different kind of symbol
     struct dw_dma_slave slave = {
                         ^~~~~
   drivers/dma/dw/platform.c:32:47: note: previous definition of 'slave' was here
             struct of_dma *ofdma, struct device *slave)
                                                  ^~~~~

vim +/slave +35 drivers/dma/dw/platform.c

a104a45ba7 Andy Shevchenko  2015-03-09  29  #define DRV_NAME	"dw_dmac"
a104a45ba7 Andy Shevchenko  2015-03-09  30  
9cade1a46c Andy Shevchenko  2013-06-05  31  static struct dma_chan *dw_dma_of_xlate(struct of_phandle_args *dma_spec,
7b7c0c79d7 Marek Szyprowski 2017-01-09  32  				     struct of_dma *ofdma, struct device *slave)
9cade1a46c Andy Shevchenko  2013-06-05  33  {
9cade1a46c Andy Shevchenko  2013-06-05  34  	struct dw_dma *dw = ofdma->of_dma_data;
4d130de20c Andy Shevchenko  2014-08-19 @35  	struct dw_dma_slave slave = {
4d130de20c Andy Shevchenko  2014-08-19  36  		.dma_dev = dw->dma.dev,
9cade1a46c Andy Shevchenko  2013-06-05  37  	};
9cade1a46c Andy Shevchenko  2013-06-05  38  	dma_cap_mask_t cap;

:::::: The code at line 35 was first introduced by commit
:::::: 4d130de20c3f39fc1a1aecd3969b50d49ff2e358 dmaengine: dw: introduce generic filter function

:::::: TO: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
:::::: CC: Vinod Koul <vinod.koul@intel.com>

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

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

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: lkp@intel.com (kbuild test robot)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/4] dmaengine: Forward slave device pointer to of_xlate callback
Date: Mon, 9 Jan 2017 23:11:10 +0800	[thread overview]
Message-ID: <201701092339.Or2Yo06w%fengguang.wu@intel.com> (raw)
In-Reply-To: <1483970598-6191-3-git-send-email-m.szyprowski@samsung.com>

Hi Marek,

[auto build test ERROR on next-20170106]
[also build test ERROR on v4.10-rc3]
[cannot apply to linus/master linux/master xlnx/master v4.9-rc8 v4.9-rc7 v4.9-rc6]
[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/Marek-Szyprowski/dmaengine-pl330-remove-pdata-based-initialization/20170109-224452
config: i386-randconfig-x001-201702 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

   drivers/dma/dw/platform.c: In function 'dw_dma_of_xlate':
>> drivers/dma/dw/platform.c:35:22: error: 'slave' redeclared as different kind of symbol
     struct dw_dma_slave slave = {
                         ^~~~~
   drivers/dma/dw/platform.c:32:47: note: previous definition of 'slave' was here
             struct of_dma *ofdma, struct device *slave)
                                                  ^~~~~

vim +/slave +35 drivers/dma/dw/platform.c

a104a45ba7 Andy Shevchenko  2015-03-09  29  #define DRV_NAME	"dw_dmac"
a104a45ba7 Andy Shevchenko  2015-03-09  30  
9cade1a46c Andy Shevchenko  2013-06-05  31  static struct dma_chan *dw_dma_of_xlate(struct of_phandle_args *dma_spec,
7b7c0c79d7 Marek Szyprowski 2017-01-09  32  				     struct of_dma *ofdma, struct device *slave)
9cade1a46c Andy Shevchenko  2013-06-05  33  {
9cade1a46c Andy Shevchenko  2013-06-05  34  	struct dw_dma *dw = ofdma->of_dma_data;
4d130de20c Andy Shevchenko  2014-08-19 @35  	struct dw_dma_slave slave = {
4d130de20c Andy Shevchenko  2014-08-19  36  		.dma_dev = dw->dma.dev,
9cade1a46c Andy Shevchenko  2013-06-05  37  	};
9cade1a46c Andy Shevchenko  2013-06-05  38  	dma_cap_mask_t cap;

:::::: The code at line 35 was first introduced by commit
:::::: 4d130de20c3f39fc1a1aecd3969b50d49ff2e358 dmaengine: dw: introduce generic filter function

:::::: TO: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
:::::: CC: Vinod Koul <vinod.koul@intel.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation
-------------- next part --------------
A non-text attachment was scrubbed...
Name: .config.gz
Type: application/gzip
Size: 28695 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20170109/ddcca592/attachment-0001.gz>

  reply	other threads:[~2017-01-09 15:11 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20170109140324eucas1p2c2b981ae2222c6a4e3dcb3e5ce3c607d@eucas1p2.samsung.com>
2017-01-09 14:03 ` [PATCH v2 0/4] DMA Engine: switch PL330 driver to non-irq-safe runtime PM Marek Szyprowski
2017-01-09 14:03   ` Marek Szyprowski
     [not found]   ` <CGME20170109140325eucas1p2674704b2505517ee532284c58c8a64d1@eucas1p2.samsung.com>
2017-01-09 14:03     ` [PATCH v2 1/4] dmaengine: pl330: remove pdata based initialization Marek Szyprowski
2017-01-09 14:03       ` Marek Szyprowski
2017-01-09 14:14       ` Arnd Bergmann
2017-01-09 14:14         ` Arnd Bergmann
2017-01-09 18:15       ` Krzysztof Kozlowski
2017-01-09 18:15         ` Krzysztof Kozlowski
2017-01-10  6:55         ` Marek Szyprowski
2017-01-10  6:55           ` Marek Szyprowski
     [not found]   ` <CGME20170109140326eucas1p25e098d4efdc5d29db08336d2177a2abe@eucas1p2.samsung.com>
2017-01-09 14:03     ` [PATCH v2 2/4] dmaengine: Forward slave device pointer to of_xlate callback Marek Szyprowski
2017-01-09 14:03       ` Marek Szyprowski
2017-01-09 15:11       ` kbuild test robot [this message]
2017-01-09 15:11         ` kbuild test robot
     [not found]   ` <CGME20170109140326eucas1p29d3e54da58845589e2adf70db854d996@eucas1p2.samsung.com>
2017-01-09 14:03     ` [PATCH v2 3/4] dmaengine: pl330: Store pointer to slave device Marek Szyprowski
2017-01-09 14:03       ` Marek Szyprowski
2017-01-09 18:08       ` Krzysztof Kozlowski
2017-01-09 18:08         ` Krzysztof Kozlowski
     [not found]   ` <CGME20170109140327eucas1p20df21c98a5744003cd2687162f35ec10@eucas1p2.samsung.com>
2017-01-09 14:03     ` [PATCH v2 4/4] dmaengine: pl330: Don't require irq-safe runtime PM Marek Szyprowski
2017-01-09 14:03       ` Marek Szyprowski
2017-01-09 18:47       ` Krzysztof Kozlowski
2017-01-09 18:47         ` Krzysztof Kozlowski

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=201701092339.Or2Yo06w%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=inki.dae@samsung.com \
    --cc=kbuild-all@01.org \
    --cc=krzk@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=rjw@rjwysocki.net \
    --cc=ulf.hansson@linaro.org \
    --cc=vinod.koul@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.