From: kernel test robot <lkp@intel.com>
To: Robert Budai <robert.budai@analog.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Michael Hennerich <Michael.Hennerich@analog.com>,
Nuno Sa <nuno.sa@analog.com>,
Ramona Gradinariu <ramona.gradinariu@analog.com>,
Antoniu Miclaus <antoniu.miclaus@analog.com>,
Jonathan Cameron <jic23@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v7 3/6] iio: imu: adis: Add DIAG_STAT register
Date: Fri, 14 Feb 2025 01:57:30 +0800 [thread overview]
Message-ID: <202502140107.SF1UwFxM-lkp@intel.com> (raw)
In-Reply-To: <20250211175706.276987-4-robert.budai@analog.com>
Hi Robert,
kernel test robot noticed the following build warnings:
[auto build test WARNING on jic23-iio/togreg]
[also build test WARNING on linus/master v6.14-rc2 next-20250213]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Robert-Budai/iio-imu-adis-Add-custom-ops-struct/20250212-040235
base: https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git togreg
patch link: https://lore.kernel.org/r/20250211175706.276987-4-robert.budai%40analog.com
patch subject: [PATCH v7 3/6] iio: imu: adis: Add DIAG_STAT register
config: arc-randconfig-r112-20250213 (https://download.01.org/0day-ci/archive/20250214/202502140107.SF1UwFxM-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 13.2.0
reproduce: (https://download.01.org/0day-ci/archive/20250214/202502140107.SF1UwFxM-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202502140107.SF1UwFxM-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/iio/imu/adis.c:319:42: sparse: sparse: incorrect type in argument 3 (different base types) @@ expected unsigned short [usertype] *val @@ got unsigned short [usertype] status_16 @@
drivers/iio/imu/adis.c:319:42: sparse: expected unsigned short [usertype] *val
drivers/iio/imu/adis.c:319:42: sparse: got unsigned short [usertype] status_16
>> drivers/iio/imu/adis.c:319:42: sparse: sparse: non size-preserving integer to pointer cast
vim +319 drivers/iio/imu/adis.c
298
299 /**
300 * __adis_check_status() - Check the device for error conditions (unlocked)
301 * @adis: The adis device
302 *
303 * Returns 0 on success, a negative error code otherwise
304 */
305 int __adis_check_status(struct adis *adis)
306 {
307 unsigned int status;
308 int diag_stat_bits;
309 u16 status_16;
310 int ret;
311 int i;
312
313 if (adis->data->diag_stat_size)
314 ret = adis->ops->read(adis, adis->data->diag_stat_reg, &status,
315 adis->data->diag_stat_size);
316 else
317 {
318 ret = __adis_read_reg_16(adis, adis->data->diag_stat_reg,
> 319 status_16);
320 status = status_16;
321 }
322 if (ret)
323 return ret;
324
325 status &= adis->data->status_error_mask;
326
327 if (status == 0)
328 return 0;
329
330 diag_stat_bits = BITS_PER_BYTE * (adis->data->diag_stat_size ?
331 adis->data->diag_stat_size : 2);
332
333 for (i = 0; i < diag_stat_bits; ++i) {
334 if (status & BIT(i)) {
335 dev_err(&adis->spi->dev, "%s.\n",
336 adis->data->status_error_msgs[i]);
337 }
338 }
339
340 return -EIO;
341 }
342 EXPORT_SYMBOL_NS_GPL(__adis_check_status, "IIO_ADISLIB");
343
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-02-13 17:58 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-11 17:56 [PATCH v7 0/6] Add support for ADIS16550 Robert Budai
2025-02-11 17:56 ` [PATCH v7 1/6] iio: imu: adis: Add custom ops struct Robert Budai
2025-02-11 17:56 ` [PATCH v7 2/6] iio: imu: adis: Add reset to custom ops Robert Budai
2025-02-11 17:57 ` [PATCH v7 3/6] iio: imu: adis: Add DIAG_STAT register Robert Budai
2025-02-13 3:55 ` kernel test robot
2025-02-13 4:27 ` kernel test robot
2025-02-13 5:40 ` kernel test robot
2025-02-13 17:57 ` kernel test robot [this message]
2025-02-16 16:43 ` Jonathan Cameron
2025-02-11 17:57 ` [PATCH v7 4/6] dt-bindings: iio: Add adis16550 bindings Robert Budai
2025-02-12 7:00 ` Krzysztof Kozlowski
2025-02-11 17:57 ` [PATCH v7 5/6] iio: imu: adis16550: add adis16550 support Robert Budai
2025-02-16 16:54 ` Jonathan Cameron
2025-02-11 17:57 ` [PATCH v7 6/6] docs: iio: add documentation for adis16550 driver Robert Budai
2025-02-16 16:56 ` Jonathan Cameron
2025-02-16 16:40 ` [PATCH v7 0/6] Add support for ADIS16550 Jonathan Cameron
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=202502140107.SF1UwFxM-lkp@intel.com \
--to=lkp@intel.com \
--cc=Michael.Hennerich@analog.com \
--cc=antoniu.miclaus@analog.com \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzk@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-doc@vger.kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=ramona.gradinariu@analog.com \
--cc=robert.budai@analog.com \
--cc=robh@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