[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202007040833.xIqR5rAw%lkp@intel.com>
Date: Sat, 4 Jul 2020 08:18:28 +0800
From: kernel test robot <lkp@...el.com>
To: Adrian Fiergolski <adrian.fiergolski@...tree3d.com>
Cc: kbuild-all@...ts.01.org, geert@...ux-m68k.org, lukas@...ner.de,
Adrian Fiergolski <adrian.fiergolski@...tree3d.com>,
Mark Brown <broonie@...nel.org>,
Rob Herring <robh+dt@...nel.org>, linux-spi@...r.kernel.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] spi: Add the SPI daisy chain support.
Hi Adrian,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on spi/for-next]
[also build test WARNING on v5.8-rc3 next-20200703]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Adrian-Fiergolski/spi-Add-the-SPI-daisy-chain-support/20200703-221615
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
config: parisc-allyesconfig (attached as .config)
compiler: hppa-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
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@...el.com>
All warnings (new ones prefixed by >>):
>> drivers/spi/spi-daisy_chain.c:232:6: warning: no previous prototype for 'spi_daisy_chain_clean' [-Wmissing-prototypes]
232 | void spi_daisy_chain_clean(struct list_head *daisy_chain_devs)
| ^~~~~~~~~~~~~~~~~~~~~
vim +/spi_daisy_chain_clean +232 drivers/spi/spi-daisy_chain.c
231
> 232 void spi_daisy_chain_clean(struct list_head *daisy_chain_devs)
233 {
234 struct spi_device *spi_dev;
235 struct spi_daisy_chain_device *spi_chain_dev;
236
237 list_for_each_entry(spi_chain_dev, daisy_chain_devs, devices) {
238 spi_dev = spi_chain_dev->spi;
239 spi_dev_put(spi_dev);
240 kfree(spi_chain_dev->no_operation.tx_buf);
241 kfree(spi_chain_dev);
242 }
243 list_del(daisy_chain_devs);
244 kfree(daisy_chain_devs);
245 }
246
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
Download attachment ".config.gz" of type "application/gzip" (65351 bytes)
Powered by blists - more mailing lists