From: Jonathan Cameron <jic23@kernel•org>
To: kernel test robot <lkp@intel•com>
Cc: "David Lechner" <dlechner@baylibre•com>,
"Jyoti Bhayana" <jbhayana@google•com>,
"Nuno Sá" <nuno.sa@analog•com>,
"Andy Shevchenko" <andy@kernel•org>,
"Nicolas Ferre" <nicolas.ferre@microchip•com>,
"Alexandre Belloni" <alexandre.belloni@bootlin•com>,
"Claudiu Beznea" <claudiu.beznea@tuxon•dev>,
"Maxime Coquelin" <mcoquelin.stm32@gmail•com>,
"Alexandre Torgue" <alexandre.torgue@foss•st.com>,
"Benson Leung" <bleung@chromium•org>,
"Guenter Roeck" <groeck@chromium•org>,
oe-kbuild-all@lists•linux.dev, linux-iio@vger•kernel.org,
linux-kernel@vger•kernel.org,
linux-arm-kernel@lists•infradead.org,
linux-stm32@st-md-mailman•stormreply.com,
chrome-platform@lists•linux.dev
Subject: Re: [PATCH] iio: pressure: cros_ec_baro: simplify timestamp channel definition
Date: Thu, 28 May 2026 14:09:47 +0100 [thread overview]
Message-ID: <20260528140947.12c73152@jic23-huawei> (raw)
In-Reply-To: <202605281432.a64fe4iY-lkp@intel.com>
On Thu, 28 May 2026 14:40:51 +0800
kernel test robot <lkp@intel•com> wrote:
> Hi David,
>
> kernel test robot noticed the following build errors:
>
For the record, this is a side effect of some email trouble David had.
It's meant to be in a series with the patch that makes that macro
a compound literal.
> [auto build test ERROR on jic23-iio/togreg]
> [also build test ERROR on linus/master v7.1-rc5 next-20260527]
> [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/David-Lechner/iio-pressure-cros_ec_baro-simplify-timestamp-channel-definition/20260525-134550
> base: https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git togreg
> patch link: https://lore.kernel.org/r/20260525014654.2399354-1-dlechner%40baylibre.com
> patch subject: [PATCH] iio: pressure: cros_ec_baro: simplify timestamp channel definition
> config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20260528/202605281432.a64fe4iY-lkp@intel.com/config)
> compiler: m68k-linux-gcc (GCC) 15.2.0
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260528/202605281432.a64fe4iY-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/202605281432.a64fe4iY-lkp@intel.com/
>
> All errors (new ones prefixed by >>):
>
> In file included from include/linux/iio/buffer.h:10,
> from drivers/iio/pressure/cros_ec_baro.c:9:
> drivers/iio/pressure/cros_ec_baro.c: In function 'cros_ec_baro_probe':
> >> include/linux/iio/iio.h:356:38: error: expected expression before '{' token
> 356 | #define IIO_CHAN_SOFT_TIMESTAMP(_si) { \
> | ^
> drivers/iio/pressure/cros_ec_baro.c:174:20: note: in expansion of macro 'IIO_CHAN_SOFT_TIMESTAMP'
> 174 | *channel = IIO_CHAN_SOFT_TIMESTAMP(1);
> | ^~~~~~~~~~~~~~~~~~~~~~~
>
>
> vim +356 include/linux/iio/iio.h
>
> 00c5f80c2fad53 include/linux/iio/iio.h Peter Rosin 2016-11-08 355
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 @356 #define IIO_CHAN_SOFT_TIMESTAMP(_si) { \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 357 .type = IIO_TIMESTAMP, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 358 .channel = -1, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 359 .scan_index = _si, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 360 .scan_type = { \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 361 .sign = 's', \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 362 .realbits = 64, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 363 .storagebits = 64, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 364 }, \
> 07d4655b410a4d include/linux/iio/iio.h Jonathan Cameron 2013-11-12 365 }
> 1d892719e70e47 drivers/staging/iio/iio.h Jonathan Cameron 2011-05-18 366
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2026-05-28 13:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-25 1:38 [PATCH v2 0/9] iio: timestamp declaration cleanup David Lechner
2026-05-25 1:38 ` [PATCH v2 1/9] iio: Convert IIO_CHAN_SOFT_TIMESTAMP() to be compound literal David Lechner
2026-05-25 1:38 ` [PATCH v2 2/9] iio: common: scmi_sensors: simplify timestamp channel definition David Lechner
2026-05-25 1:38 ` [PATCH v2 3/9] iio: adc: dln2-adc: " David Lechner
2026-05-25 1:38 ` [PATCH v2 4/9] iio: adc: at91_adc: " David Lechner
2026-05-25 1:38 ` [PATCH v2 5/9] iio: adc: cc10001_adc: " David Lechner
2026-05-25 1:38 ` [PATCH v2 6/9] iio: adc: stm32-adc: " David Lechner
2026-05-25 1:38 ` [PATCH v2 7/9] iio: common: cros_ec_sensors: " David Lechner
2026-05-25 1:38 ` [PATCH v2 8/9] iio: light: cros_ec_light_prox: " David Lechner
2026-05-25 1:46 ` [PATCH] iio: pressure: cros_ec_baro: " David Lechner
2026-05-25 1:49 ` David Lechner
2026-05-26 18:12 ` Jonathan Cameron
2026-05-28 6:40 ` kernel test robot
2026-05-28 13:09 ` Jonathan Cameron [this message]
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=20260528140947.12c73152@jic23-huawei \
--to=jic23@kernel$(echo .)org \
--cc=alexandre.belloni@bootlin$(echo .)com \
--cc=alexandre.torgue@foss$(echo .)st.com \
--cc=andy@kernel$(echo .)org \
--cc=bleung@chromium$(echo .)org \
--cc=chrome-platform@lists$(echo .)linux.dev \
--cc=claudiu.beznea@tuxon$(echo .)dev \
--cc=dlechner@baylibre$(echo .)com \
--cc=groeck@chromium$(echo .)org \
--cc=jbhayana@google$(echo .)com \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
--cc=linux-iio@vger$(echo .)kernel.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-stm32@st-md-mailman$(echo .)stormreply.com \
--cc=lkp@intel$(echo .)com \
--cc=mcoquelin.stm32@gmail$(echo .)com \
--cc=nicolas.ferre@microchip$(echo .)com \
--cc=nuno.sa@analog$(echo .)com \
--cc=oe-kbuild-all@lists$(echo .)linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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