From: kernel test robot <lkp@intel.com>
To: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH v1 7/9] iio: Expand IIO event interface for real-world unit handling
Date: Mon, 19 Jan 2026 10:50:50 +0800 [thread overview]
Message-ID: <202601191016.14C0gjBY-lkp@intel.com> (raw)
In-Reply-To: <6d9baa8d553d03a41fbd97bca0377a7a4779a93e.1768759292.git.marcelo.schmitt1@gmail.com>
Hi Marcelo,
[This is a private test report for your RFC patch.]
kernel test robot noticed the following build errors:
[auto build test ERROR on c30e80d68a7afb334fde7147ee0106f25dd58d3a]
url: https://github.com/intel-lab-lkp/linux/commits/Marcelo-Schmitt/iio-ABI-Drop-unused-in_energy_input/20260119-022321
base: c30e80d68a7afb334fde7147ee0106f25dd58d3a
patch link: https://lore.kernel.org/r/6d9baa8d553d03a41fbd97bca0377a7a4779a93e.1768759292.git.marcelo.schmitt1%40gmail.com
patch subject: [RFC PATCH v1 7/9] iio: Expand IIO event interface for real-world unit handling
config: i386-buildonly-randconfig-005-20260119 (https://download.01.org/0day-ci/archive/20260119/202601191016.14C0gjBY-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260119/202601191016.14C0gjBY-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/202601191016.14C0gjBY-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/iio/dac/ad8460.c:653:23: error: incompatible function pointer types initializing 'int (*)(struct iio_dev *, const struct iio_chan_spec *, enum iio_event_type, enum iio_event_direction, enum iio_event_info, enum iio_event_unit, int, int)' with an expression of type 'int (*)(struct iio_dev *, const struct iio_chan_spec *, enum iio_event_type, enum iio_event_direction, enum iio_event_info, int, int)' [-Wincompatible-function-pointer-types]
653 | .write_event_value = &ad8460_write_event_value,
| ^~~~~~~~~~~~~~~~~~~~~~~~~
drivers/iio/dac/ad8460.c:654:22: error: incompatible function pointer types initializing 'int (*)(struct iio_dev *, const struct iio_chan_spec *, enum iio_event_type, enum iio_event_direction, enum iio_event_info, enum iio_event_unit, int *, int *)' with an expression of type 'int (*)(struct iio_dev *, const struct iio_chan_spec *, enum iio_event_type, enum iio_event_direction, enum iio_event_info, int *, int *)' [-Wincompatible-function-pointer-types]
654 | .read_event_value = &ad8460_read_event_value,
| ^~~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for CAN_DEV
Depends on [n]: NETDEVICES [=n] && CAN [=y]
Selected by [y]:
- CAN [=y] && NET [=y]
vim +653 drivers/iio/dac/ad8460.c
a976ef24c62540d Mariel Tinaco 2024-09-12 649
a976ef24c62540d Mariel Tinaco 2024-09-12 650 static const struct iio_info ad8460_info = {
a976ef24c62540d Mariel Tinaco 2024-09-12 651 .read_raw = &ad8460_read_raw,
a976ef24c62540d Mariel Tinaco 2024-09-12 652 .write_raw = &ad8460_write_raw,
a976ef24c62540d Mariel Tinaco 2024-09-12 @653 .write_event_value = &ad8460_write_event_value,
a976ef24c62540d Mariel Tinaco 2024-09-12 654 .read_event_value = &ad8460_read_event_value,
a976ef24c62540d Mariel Tinaco 2024-09-12 655 .write_event_config = &ad8460_write_event_config,
a976ef24c62540d Mariel Tinaco 2024-09-12 656 .read_event_config = &ad8460_read_event_config,
a976ef24c62540d Mariel Tinaco 2024-09-12 657 .debugfs_reg_access = &ad8460_reg_access,
a976ef24c62540d Mariel Tinaco 2024-09-12 658 };
a976ef24c62540d Mariel Tinaco 2024-09-12 659
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-19 2:51 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-18 18:18 [RFC PATCH v1 0/9] iio: Expand IIO event interface for real-world unit handling Marcelo Schmitt
2026-01-18 18:18 ` [RFC PATCH v1 1/9] iio: ABI: Drop unused in_energy_input Marcelo Schmitt
2026-01-31 18:51 ` Jonathan Cameron
2026-01-18 18:20 ` [RFC PATCH v1 2/9] iio: ABI: Accurately describe in_distance_input Marcelo Schmitt
2026-01-18 19:46 ` David Lechner
2026-01-21 2:49 ` Marcelo Schmitt
2026-01-31 18:52 ` Jonathan Cameron
2026-01-18 18:20 ` [RFC PATCH v1 3/9] iio: ABI: Accurately describe in_illuminance[Y]_input Marcelo Schmitt
2026-01-18 18:20 ` [RFC PATCH v1 4/9] iio: ABI: Slight readability improve for event threshold value doc Marcelo Schmitt
2026-01-18 18:21 ` [RFC PATCH v1 5/9] iio: ABI: Update event threshold value documentation Marcelo Schmitt
2026-01-18 18:21 ` [RFC PATCH v1 6/9] iio: ABI: Adjust event threshold enable desc to unitless thresh values Marcelo Schmitt
2026-01-18 18:21 ` [RFC PATCH v1 7/9] iio: Expand IIO event interface for real-world unit handling Marcelo Schmitt
2026-01-18 20:10 ` David Lechner
2026-01-19 2:50 ` kernel test robot [this message]
2026-01-19 2:50 ` kernel test robot
2026-01-31 18:55 ` Jonathan Cameron
2026-01-18 18:22 ` [RFC PATCH v1 8/9] iio: dummy: iio_simple_dummy: Update to event unit expanded interface Marcelo Schmitt
2026-01-19 6:17 ` kernel test robot
2026-01-18 18:22 ` [RFC PATCH v1 9/9] iio: adc: ad7091r-base: " Marcelo Schmitt
2026-01-18 20:33 ` [RFC PATCH v1 0/9] iio: Expand IIO event interface for real-world unit handling David Lechner
2026-01-21 2:40 ` Marcelo Schmitt
2026-01-21 9:33 ` Nuno Sá
2026-01-21 17:43 ` David Lechner
2026-01-31 18:48 ` Jonathan Cameron
2026-02-02 10:21 ` Nuno Sá
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=202601191016.14C0gjBY-lkp@intel.com \
--to=lkp@intel.com \
--cc=llvm@lists.linux.dev \
--cc=marcelo.schmitt1@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
/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.