From: kernel test robot <lkp@intel.com>
To: Manjunatha Venkatesh <manjunatha.venkatesh@nxp.com>,
linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org,
will@kernel.org, axboe@kernel.dk, robh+dt@kernel.org
Cc: kbuild-all@lists.01.org, mb@lightnvm.io,
ckeepax@opensource.cirrus.com, arnd@arndb.d,
manjunatha.venkatesh@nxp.com, mst@redhat.com, javier@javigon.com,
mikelley@microsoft.com, jasowang@redhat.com,
sunilmut@microsoft.com, bjorn.andersson@linaro.org,
krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org,
ashish.deshpande@nxp.com, rvmanjumce@gmail.com
Subject: Re: [PATCH v4 3/3] misc: uwb: nxp: sr1xx: UWB driver support for sr1xx series chip
Date: Sat, 28 May 2022 09:23:09 +0800 [thread overview]
Message-ID: <202205280934.M6HHdGSK-lkp@intel.com> (raw)
In-Reply-To: <20220527184351.3829543-4-manjunatha.venkatesh@nxp.com>
Hi Manjunatha,
I love your patch! Perhaps something to improve:
[auto build test WARNING on char-misc/char-misc-testing]
[also build test WARNING on robh/for-next linus/master v5.18 next-20220527]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/intel-lab-lkp/linux/commits/Manjunatha-Venkatesh/dt-bindings-uwb-Device-tree-information-for-Nxp-SR1XX-SOCs/20220528-034415
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git 90de6805267f8c79cd2b1a36805071e257c39b5c
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20220528/202205280934.M6HHdGSK-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 11.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://github.com/intel-lab-lkp/linux/commit/948442a0588504d3fecae99073e785e5af6346bc
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Manjunatha-Venkatesh/dt-bindings-uwb-Device-tree-information-for-Nxp-SR1XX-SOCs/20220528-034415
git checkout 948442a0588504d3fecae99073e785e5af6346bc
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=sh SHELL=/bin/bash drivers/
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/misc/nxp-sr1xx.c:175:6: warning: no previous prototype for 'sr1xx_wait_for_irq_gpio_low' [-Wmissing-prototypes]
175 | void sr1xx_wait_for_irq_gpio_low(struct sr1xx_dev *sr1xx_dev)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/misc/nxp-sr1xx.c:770:5: warning: no previous prototype for 'sr1xx_dev_suspend' [-Wmissing-prototypes]
770 | int sr1xx_dev_suspend(struct device *dev)
| ^~~~~~~~~~~~~~~~~
>> drivers/misc/nxp-sr1xx.c:786:5: warning: no previous prototype for 'sr1xx_dev_resume' [-Wmissing-prototypes]
786 | int sr1xx_dev_resume(struct device *dev)
| ^~~~~~~~~~~~~~~~
vim +/sr1xx_wait_for_irq_gpio_low +175 drivers/misc/nxp-sr1xx.c
168
169 /**
170 * sr1xx_wait_for_irq_gpio_low
171 *
172 * Function to wait till irq gpio goes low state
173 *
174 */
> 175 void sr1xx_wait_for_irq_gpio_low(struct sr1xx_dev *sr1xx_dev)
176 {
177 int retry_count = 0;
178
179 do {
180 udelay(10);
181 retry_count++;
182 if (retry_count == MAX_RETRY_COUNT_FOR_HANDSHAKE) {
183 dev_info(&sr1xx_dev->spi->dev,
184 "Slave not released the IRQ even after 10ms");
185 break;
186 }
187 } while (gpio_get_value(sr1xx_dev->irq_gpio));
188 }
189
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next prev parent reply other threads:[~2022-05-28 1:23 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-27 18:43 [PATCH v4 0/2] Uwb: Nxp: Driver for SR1XX SOCs Manjunatha Venkatesh
2022-05-27 18:43 ` [PATCH v4 1/3] dt-bindings: uwb: Device tree information for Nxp " Manjunatha Venkatesh
2022-05-29 11:37 ` Krzysztof Kozlowski
2022-05-29 13:27 ` Rob Herring
2022-05-27 18:43 ` [PATCH v4 2/3] misc: uwb: Maintainers list for Nxp Uwb SR1XX SOCs family drivers Manjunatha Venkatesh
2022-05-29 11:38 ` Krzysztof Kozlowski
2022-05-27 18:43 ` [PATCH v4 3/3] misc: uwb: nxp: sr1xx: UWB driver support for sr1xx series chip Manjunatha Venkatesh
2022-05-28 1:23 ` kernel test robot [this message]
2022-05-29 11:42 ` Krzysztof Kozlowski
2022-05-29 13:28 ` Christophe JAILLET
2022-06-02 8:24 ` Greg KH
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=202205280934.M6HHdGSK-lkp@intel.com \
--to=lkp@intel.com \
--cc=arnd@arndb.d \
--cc=ashish.deshpande@nxp.com \
--cc=axboe@kernel.dk \
--cc=bjorn.andersson@linaro.org \
--cc=ckeepax@opensource.cirrus.com \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=jasowang@redhat.com \
--cc=javier@javigon.com \
--cc=kbuild-all@lists.01.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=manjunatha.venkatesh@nxp.com \
--cc=mb@lightnvm.io \
--cc=mikelley@microsoft.com \
--cc=mst@redhat.com \
--cc=robh+dt@kernel.org \
--cc=rvmanjumce@gmail.com \
--cc=sunilmut@microsoft.com \
--cc=will@kernel.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).