public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Remi Buisson via B4 Relay"
	<devnull+remi.buisson.tdk.com@kernel.org>,
	"Jonathan Cameron" <jic23@kernel.org>,
	"David Lechner" <dlechner@baylibre.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Andy Shevchenko" <andy@kernel.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org,
	devicetree@vger.kernel.org, Remi Buisson <remi.buisson@tdk.com>
Subject: Re: [PATCH v6 7/9] iio: imu: inv_icm45600: add SPI driver for inv_icm45600 driver
Date: Thu, 25 Sep 2025 08:34:47 +0800	[thread overview]
Message-ID: <202509250829.OYI9IbAs-lkp@intel.com> (raw)
In-Reply-To: <20250924-add_newport_driver-v6-7-76687b9d8a6e@tdk.com>

Hi Remi,

kernel test robot noticed the following build errors:

[auto build test ERROR on 411e8b72c181e4f49352c12ced0fd8426eb683aa]

url:    https://github.com/intel-lab-lkp/linux/commits/Remi-Buisson-via-B4-Relay/dt-bindings-iio-imu-Add-inv_icm45600/20250924-172614
base:   411e8b72c181e4f49352c12ced0fd8426eb683aa
patch link:    https://lore.kernel.org/r/20250924-add_newport_driver-v6-7-76687b9d8a6e%40tdk.com
patch subject: [PATCH v6 7/9] iio: imu: inv_icm45600: add SPI driver for inv_icm45600 driver
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20250925/202509250829.OYI9IbAs-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250925/202509250829.OYI9IbAs-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/202509250829.OYI9IbAs-lkp@intel.com/

All errors (new ones prefixed by >>):

>> drivers/iio/imu/inv_icm45600/inv_icm45600_spi.c:24:5: error: call to undeclared function 'FIELD_PREP'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
      24 |                                 FIELD_PREP(INV_ICM45600_DRIVE_CONFIG0_SPI_MASK,
         |                                 ^
   1 error generated.


vim +/FIELD_PREP +24 drivers/iio/imu/inv_icm45600/inv_icm45600_spi.c

    18	
    19	static int inv_icm45600_spi_bus_setup(struct inv_icm45600_state *st)
    20	{
    21		/* Set slew rates for SPI. */
    22		return regmap_update_bits(st->map, INV_ICM45600_REG_DRIVE_CONFIG0,
    23					INV_ICM45600_DRIVE_CONFIG0_SPI_MASK,
  > 24					FIELD_PREP(INV_ICM45600_DRIVE_CONFIG0_SPI_MASK,
    25						INV_ICM45600_SPI_SLEW_RATE_5NS));
    26	}
    27	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2025-09-25  0:35 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-24  9:23 [PATCH v6 0/9] iio: imu: new inv_icm45600 driver Remi Buisson via B4 Relay
2025-09-24  9:23 ` [PATCH v6 1/9] dt-bindings: iio: imu: Add inv_icm45600 Remi Buisson via B4 Relay
2025-09-24 19:17   ` Conor Dooley
2025-09-24  9:23 ` [PATCH v6 2/9] iio: imu: inv_icm45600: add new inv_icm45600 driver Remi Buisson via B4 Relay
2025-09-28  8:30   ` Jonathan Cameron
2025-09-24  9:23 ` [PATCH v6 3/9] iio: imu: inv_icm45600: add buffer support in iio devices Remi Buisson via B4 Relay
2025-09-28  8:45   ` Jonathan Cameron
2025-10-01 12:07     ` Remi Buisson
2025-10-04 15:41       ` Jonathan Cameron
2025-09-24  9:23 ` [PATCH v6 4/9] iio: imu: inv_icm45600: add IMU IIO gyroscope device Remi Buisson via B4 Relay
2025-09-28  8:52   ` Jonathan Cameron
2025-09-24  9:23 ` [PATCH v6 5/9] iio: imu: inv_icm45600: add IMU IIO accelerometer device Remi Buisson via B4 Relay
2025-09-24  9:23 ` [PATCH v6 6/9] iio: imu: inv_icm45600: add I2C driver for inv_icm45600 driver Remi Buisson via B4 Relay
2025-09-24  9:24 ` [PATCH v6 7/9] iio: imu: inv_icm45600: add SPI " Remi Buisson via B4 Relay
2025-09-25  0:34   ` kernel test robot [this message]
2025-09-28  9:00   ` Jonathan Cameron
2025-09-24  9:24 ` [PATCH v6 8/9] iio: imu: inv_icm45600: add I3C " Remi Buisson via B4 Relay
2025-09-24  9:24 ` [PATCH v6 9/9] MAINTAINERS: add entry for inv_icm45600 6-axis imu sensor Remi Buisson via B4 Relay

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=202509250829.OYI9IbAs-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andy@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=devnull+remi.buisson.tdk.com@kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=jic23@kernel.org \
    --cc=krzk@kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=nuno.sa@analog.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=remi.buisson@tdk.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