* drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types)
@ 2026-05-16 8:17 kernel test robot
2026-05-19 16:52 ` [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Nishanth Sampath Kumar
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: kernel test robot @ 2026-05-16 8:17 UTC (permalink / raw)
To: Nishanth Sampath Kumar; +Cc: oe-kbuild-all, linux-kernel, Mark Brown
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: d458a240344c4369bf6f3da203f2779515177738
commit: bad4bd28abf4d7cb2adcb39cc0de789729d2cd69 regmap-i2c: add SMBus byte/word reg16 bus for adapters lacking I2C_FUNC_I2C
date: 5 weeks ago
config: x86_64-randconfig-122-20260516 (https://download.01.org/0day-ci/archive/20260516/202605161621.mY5zFh4D-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
sparse: v0.6.5-rc1
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260516/202605161621.mY5zFh4D-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
| Fixes: bad4bd28abf4 ("regmap-i2c: add SMBus byte/word reg16 bus for adapters lacking I2C_FUNC_I2C")
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202605161621.mY5zFh4D-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types) @@ expected unsigned short [usertype] value @@ got restricted __le16 [usertype] @@
drivers/base/regmap/regmap-i2c.c:340:42: sparse: expected unsigned short [usertype] value
drivers/base/regmap/regmap-i2c.c:340:42: sparse: got restricted __le16 [usertype]
vim +340 drivers/base/regmap/regmap-i2c.c
305
306 /*
307 * SMBus byte/word reg16 support for adapters that have SMBUS_BYTE_DATA
308 * and SMBUS_WORD_DATA but lack I2C_FUNC_I2C and I2C_FUNC_SMBUS_I2C_BLOCK,
309 * such as the AMD PIIX4.
310 *
311 * READ: set 16-bit EEPROM address via write_byte_data(addr_lo, addr_hi),
312 * then sequentially read bytes via read_byte() (EEPROM auto-
313 * increments the address pointer). Same as the I2C-block reg16
314 * read path above.
315 *
316 * WRITE: encode the low address byte and data into a word transaction:
317 * write_word_data(addr_hi, (data_byte << 8) | addr_lo).
318 * Only single-byte writes are supported (one value per transaction).
319 */
320 static int regmap_smbus_word_write_reg16(void *context, const void *data,
321 size_t count)
322 {
323 struct device *dev = context;
324 struct i2c_client *i2c = to_i2c_client(dev);
325 u8 addr_hi, addr_lo, val;
326
327 /*
328 * data layout: [addr_hi, addr_lo, val0, val1, ...].
329 * Only single-byte value writes are supported; multi-byte would
330 * require raw I2C (or repeated word writes with incrementing address).
331 */
332 if (count != 3)
333 return -EINVAL;
334
335 addr_hi = ((u8 *)data)[0];
336 addr_lo = ((u8 *)data)[1];
337 val = ((u8 *)data)[2];
338
339 return i2c_smbus_write_word_data(i2c, addr_hi,
> 340 cpu_to_le16(((u16)val << 8) | addr_lo));
341 }
342
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-16 8:17 drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types) kernel test robot
@ 2026-05-19 16:52 ` Nishanth Sampath Kumar
2026-05-19 16:56 ` Mark Brown
2026-05-19 17:08 ` Nishanth Sampath Kumar
2026-05-19 22:05 ` [PATCH v2] " Nishanth Sampath Kumar
2 siblings, 1 reply; 9+ messages in thread
From: Nishanth Sampath Kumar @ 2026-05-19 16:52 UTC (permalink / raw)
To: Mark Brown; +Cc: lkp, linux-kernel, oe-kbuild-all, nissampa
[-- Attachment #1: Type: text/plain, Size: 1593 bytes --]
From 12085a8445d18202a59e3558118f74db32673b17 Mon Sep 17 00:00:00 2001
From: Nishanth Sampath Kumar <nissampa@cisco.com>
Date: Tue, 19 May 2026 09:41:53 -0700
Subject: [PATCH] regmap-i2c: fix sparse warning in
regmap_smbus_word_write_reg16
i2c_smbus_write_word_data() expects a plain u16, but cpu_to_le16()
returns __le16 (a sparse-restricted endian type), causing:
drivers/base/regmap/regmap-i2c.c:340: sparse: incorrect type in
argument 3 (different base types)
expected unsigned short [usertype] value
got restricted __le16 [usertype]
SMBus already defines byte ordering internally, so cpu_to_le16() is
wrong here. Replace it with a plain (u16) cast.
Fixes: bad4bd28abf4 ("regmap-i2c: add SMBus byte/word reg16 bus for adapters lacking I2C_FUNC_I2C")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202605161621.mY5zFh4D-lkp@intel.com/
Signed-off-by: Nishanth Sampath Kumar <nissampa@cisco.com>
---
drivers/base/regmap/regmap-i2c.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/base/regmap/regmap-i2c.c b/drivers/base/regmap/regmap-i2c.c
index 31e30dfced19..9102d8b20896 100644
--- a/drivers/base/regmap/regmap-i2c.c
+++ b/drivers/base/regmap/regmap-i2c.c
@@ -337,7 +337,7 @@ static int regmap_smbus_word_write_reg16(void *context, const void *data,
val = ((u8 *)data)[2];
return i2c_smbus_write_word_data(i2c, addr_hi,
- cpu_to_le16(((u16)val << 8) | addr_lo));
+ (u16)(((u16)val << 8) | addr_lo));
}
static const struct regmap_bus regmap_smbus_byte_word_reg16 = {
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-19 16:52 ` [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Nishanth Sampath Kumar
@ 2026-05-19 16:56 ` Mark Brown
0 siblings, 0 replies; 9+ messages in thread
From: Mark Brown @ 2026-05-19 16:56 UTC (permalink / raw)
To: Nishanth Sampath Kumar; +Cc: lkp, linux-kernel, oe-kbuild-all
[-- Attachment #1: Type: text/plain, Size: 769 bytes --]
On Tue, May 19, 2026 at 04:52:05PM +0000, Nishanth Sampath Kumar wrote:
> From 12085a8445d18202a59e3558118f74db32673b17 Mon Sep 17 00:00:00 2001
> From: Nishanth Sampath Kumar <nissampa@cisco.com>
> Date: Tue, 19 May 2026 09:41:53 -0700
> Subject: [PATCH] regmap-i2c: fix sparse warning in
> regmap_smbus_word_write_reg16
Please post the patch as covered in submitting-patches.rst, not as an
attachment. If you're having trouble with your mail server b4 send is
helpful:
https://b4.docs.kernel.org/en/latest/contributor/overview.html
> return i2c_smbus_write_word_data(i2c, addr_hi,
> - cpu_to_le16(((u16)val << 8) | addr_lo));
> + (u16)(((u16)val << 8) | addr_lo));
What is the top level (u16) cast doing here? This is not a legibility
triumph...
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-16 8:17 drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types) kernel test robot
2026-05-19 16:52 ` [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Nishanth Sampath Kumar
@ 2026-05-19 17:08 ` Nishanth Sampath Kumar
2026-05-19 21:43 ` kernel test robot
2026-05-19 22:16 ` kernel test robot
2026-05-19 22:05 ` [PATCH v2] " Nishanth Sampath Kumar
2 siblings, 2 replies; 9+ messages in thread
From: Nishanth Sampath Kumar @ 2026-05-19 17:08 UTC (permalink / raw)
To: broonie; +Cc: lkp, linux-kernel, oe-kbuild-all, nissampa
i2c_smbus_write_word_data() expects a plain u16, but cpu_to_le16()
returns __le16 (a sparse-restricted endian type), causing:
drivers/base/regmap/regmap-i2c.c:340: sparse: incorrect type in
argument 3 (different base types)
expected unsigned short [usertype] value
got restricted __le16 [usertype]
SMBus already defines byte ordering internally, so cpu_to_le16() is
wrong here. Replace it with a plain (u16) cast.
Fixes: bad4bd28abf4 ("regmap-i2c: add SMBus byte/word reg16 bus for adapters lacking I2C_FUNC_I2C")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202605161621.mY5zFh4D-lkp@intel.com/
Signed-off-by: Nishanth Sampath Kumar <nissampa@cisco.com>
---
drivers/base/regmap/regmap-i2c.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/base/regmap/regmap-i2c.c b/drivers/base/regmap/regmap-i2c.c
index 31e30dfced19..ae441fc63127 100644
--- a/drivers/base/regmap/regmap-i2c.c
+++ b/drivers/base/regmap/regmap-i2c.c
@@ -337,7 +337,7 @@ static int regmap_smbus_word_write_reg16(void *context, const void *data,
val = ((u8 *)data)[2];
return i2c_smbus_write_word_data(i2c, addr_hi,
- cpu_to_le16(((u16)val << 8) | addr_lo));
+ ((u16)val << 8) | addr_lo));
}
static const struct regmap_bus regmap_smbus_byte_word_reg16 = {
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-19 17:08 ` Nishanth Sampath Kumar
@ 2026-05-19 21:43 ` kernel test robot
2026-05-19 22:16 ` kernel test robot
1 sibling, 0 replies; 9+ messages in thread
From: kernel test robot @ 2026-05-19 21:43 UTC (permalink / raw)
To: Nishanth Sampath Kumar, broonie
Cc: llvm, oe-kbuild-all, lkp, linux-kernel, nissampa
Hi Nishanth,
kernel test robot noticed the following build errors:
[auto build test ERROR on broonie-regmap/for-next]
[also build test ERROR on linus/master v7.1-rc4 next-20260519]
[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/Nishanth-Sampath-Kumar/regmap-i2c-fix-sparse-warning-in-regmap_smbus_word_write_reg16/20260520-011137
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-next
patch link: https://lore.kernel.org/r/20260519170836.1344260-1-nissampa%40cisco.com
patch subject: [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
config: arm64-randconfig-004-20260520 (https://download.01.org/0day-ci/archive/20260520/202605200528.vTiSwokq-lkp@intel.com/config)
compiler: clang version 16.0.6 (https://github.com/llvm/llvm-project 7cbf1a2591520c2491aa35339f227775f4d3adf6)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260520/202605200528.vTiSwokq-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/202605200528.vTiSwokq-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/base/regmap/regmap-i2c.c:340:33: error: expected ';' after return statement
((u16)val << 8) | addr_lo));
^
;
1 error generated.
vim +340 drivers/base/regmap/regmap-i2c.c
305
306 /*
307 * SMBus byte/word reg16 support for adapters that have SMBUS_BYTE_DATA
308 * and SMBUS_WORD_DATA but lack I2C_FUNC_I2C and I2C_FUNC_SMBUS_I2C_BLOCK,
309 * such as the AMD PIIX4.
310 *
311 * READ: set 16-bit EEPROM address via write_byte_data(addr_lo, addr_hi),
312 * then sequentially read bytes via read_byte() (EEPROM auto-
313 * increments the address pointer). Same as the I2C-block reg16
314 * read path above.
315 *
316 * WRITE: encode the low address byte and data into a word transaction:
317 * write_word_data(addr_hi, (data_byte << 8) | addr_lo).
318 * Only single-byte writes are supported (one value per transaction).
319 */
320 static int regmap_smbus_word_write_reg16(void *context, const void *data,
321 size_t count)
322 {
323 struct device *dev = context;
324 struct i2c_client *i2c = to_i2c_client(dev);
325 u8 addr_hi, addr_lo, val;
326
327 /*
328 * data layout: [addr_hi, addr_lo, val0, val1, ...].
329 * Only single-byte value writes are supported; multi-byte would
330 * require raw I2C (or repeated word writes with incrementing address).
331 */
332 if (count != 3)
333 return -EINVAL;
334
335 addr_hi = ((u8 *)data)[0];
336 addr_lo = ((u8 *)data)[1];
337 val = ((u8 *)data)[2];
338
339 return i2c_smbus_write_word_data(i2c, addr_hi,
> 340 ((u16)val << 8) | addr_lo));
341 }
342
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-16 8:17 drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types) kernel test robot
2026-05-19 16:52 ` [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Nishanth Sampath Kumar
2026-05-19 17:08 ` Nishanth Sampath Kumar
@ 2026-05-19 22:05 ` Nishanth Sampath Kumar
2026-05-20 9:31 ` Mark Brown
2026-05-20 11:58 ` Mark Brown
2 siblings, 2 replies; 9+ messages in thread
From: Nishanth Sampath Kumar @ 2026-05-19 22:05 UTC (permalink / raw)
To: broonie; +Cc: lkp, linux-kernel, oe-kbuild-all, nissampa
i2c_smbus_write_word_data() expects a plain u16, but cpu_to_le16()
returns __le16 (a sparse-restricted endian type), causing:
drivers/base/regmap/regmap-i2c.c:340: sparse: incorrect type in
argument 3 (different base types)
expected unsigned short [usertype] value
got restricted __le16 [usertype]
SMBus already defines byte ordering internally, so cpu_to_le16() is
wrong here. Replace it with a plain (u16) cast.
Fixes: bad4bd28abf4 ("regmap-i2c: add SMBus byte/word reg16 bus for adapters lacking I2C_FUNC_I2C")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202605161621.mY5zFh4D-lkp@intel.com/
Signed-off-by: Nishanth Sampath Kumar <nissampa@cisco.com>
---
drivers/base/regmap/regmap-i2c.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/base/regmap/regmap-i2c.c b/drivers/base/regmap/regmap-i2c.c
index 31e30dfced19..51a04961faf7 100644
--- a/drivers/base/regmap/regmap-i2c.c
+++ b/drivers/base/regmap/regmap-i2c.c
@@ -337,7 +337,7 @@ static int regmap_smbus_word_write_reg16(void *context, const void *data,
val = ((u8 *)data)[2];
return i2c_smbus_write_word_data(i2c, addr_hi,
- cpu_to_le16(((u16)val << 8) | addr_lo));
+ ((u16)val << 8) | addr_lo);
}
static const struct regmap_bus regmap_smbus_byte_word_reg16 = {
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-19 17:08 ` Nishanth Sampath Kumar
2026-05-19 21:43 ` kernel test robot
@ 2026-05-19 22:16 ` kernel test robot
1 sibling, 0 replies; 9+ messages in thread
From: kernel test robot @ 2026-05-19 22:16 UTC (permalink / raw)
To: Nishanth Sampath Kumar, broonie
Cc: oe-kbuild-all, lkp, linux-kernel, nissampa
Hi Nishanth,
kernel test robot noticed the following build errors:
[auto build test ERROR on broonie-regmap/for-next]
[also build test ERROR on linus/master v7.1-rc4 next-20260519]
[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/Nishanth-Sampath-Kumar/regmap-i2c-fix-sparse-warning-in-regmap_smbus_word_write_reg16/20260520-011137
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-next
patch link: https://lore.kernel.org/r/20260519170836.1344260-1-nissampa%40cisco.com
patch subject: [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
config: s390-randconfig-r071-20260520 (https://download.01.org/0day-ci/archive/20260520/202605200654.DSWKrX9W-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 8.5.0
smatch: v0.5.0-9185-gbcc58b9c
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260520/202605200654.DSWKrX9W-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/202605200654.DSWKrX9W-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/base/regmap/regmap-i2c.c: In function 'regmap_smbus_word_write_reg16':
>> drivers/base/regmap/regmap-i2c.c:340:33: error: expected ';' before ')' token
((u16)val << 8) | addr_lo));
^
;
>> drivers/base/regmap/regmap-i2c.c:340:33: error: expected statement before ')' token
vim +340 drivers/base/regmap/regmap-i2c.c
305
306 /*
307 * SMBus byte/word reg16 support for adapters that have SMBUS_BYTE_DATA
308 * and SMBUS_WORD_DATA but lack I2C_FUNC_I2C and I2C_FUNC_SMBUS_I2C_BLOCK,
309 * such as the AMD PIIX4.
310 *
311 * READ: set 16-bit EEPROM address via write_byte_data(addr_lo, addr_hi),
312 * then sequentially read bytes via read_byte() (EEPROM auto-
313 * increments the address pointer). Same as the I2C-block reg16
314 * read path above.
315 *
316 * WRITE: encode the low address byte and data into a word transaction:
317 * write_word_data(addr_hi, (data_byte << 8) | addr_lo).
318 * Only single-byte writes are supported (one value per transaction).
319 */
320 static int regmap_smbus_word_write_reg16(void *context, const void *data,
321 size_t count)
322 {
323 struct device *dev = context;
324 struct i2c_client *i2c = to_i2c_client(dev);
325 u8 addr_hi, addr_lo, val;
326
327 /*
328 * data layout: [addr_hi, addr_lo, val0, val1, ...].
329 * Only single-byte value writes are supported; multi-byte would
330 * require raw I2C (or repeated word writes with incrementing address).
331 */
332 if (count != 3)
333 return -EINVAL;
334
335 addr_hi = ((u8 *)data)[0];
336 addr_lo = ((u8 *)data)[1];
337 val = ((u8 *)data)[2];
338
339 return i2c_smbus_write_word_data(i2c, addr_hi,
> 340 ((u16)val << 8) | addr_lo));
341 }
342
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-19 22:05 ` [PATCH v2] " Nishanth Sampath Kumar
@ 2026-05-20 9:31 ` Mark Brown
2026-05-20 11:58 ` Mark Brown
1 sibling, 0 replies; 9+ messages in thread
From: Mark Brown @ 2026-05-20 9:31 UTC (permalink / raw)
To: Nishanth Sampath Kumar; +Cc: lkp, linux-kernel, oe-kbuild-all
[-- Attachment #1: Type: text/plain, Size: 490 bytes --]
On Tue, May 19, 2026 at 03:05:57PM -0700, Nishanth Sampath Kumar wrote:
> i2c_smbus_write_word_data() expects a plain u16, but cpu_to_le16()
> returns __le16 (a sparse-restricted endian type), causing:
Please don't send new patches in reply to old patches or serieses, this
makes it harder for both people and tools to understand what is going
on - it can bury things in mailboxes and make it difficult to keep track
of what current patches are, both for the new patches and the old ones.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
2026-05-19 22:05 ` [PATCH v2] " Nishanth Sampath Kumar
2026-05-20 9:31 ` Mark Brown
@ 2026-05-20 11:58 ` Mark Brown
1 sibling, 0 replies; 9+ messages in thread
From: Mark Brown @ 2026-05-20 11:58 UTC (permalink / raw)
To: Nishanth Sampath Kumar; +Cc: lkp, linux-kernel, oe-kbuild-all
On Tue, 19 May 2026 15:05:57 -0700, Nishanth Sampath Kumar wrote:
> regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-7.2
Thanks!
[1/1] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16
https://git.kernel.org/broonie/regmap/c/19a5211cda12
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-22 10:22 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-16 8:17 drivers/base/regmap/regmap-i2c.c:340:42: sparse: sparse: incorrect type in argument 3 (different base types) kernel test robot
2026-05-19 16:52 ` [PATCH] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Nishanth Sampath Kumar
2026-05-19 16:56 ` Mark Brown
2026-05-19 17:08 ` Nishanth Sampath Kumar
2026-05-19 21:43 ` kernel test robot
2026-05-19 22:16 ` kernel test robot
2026-05-19 22:05 ` [PATCH v2] " Nishanth Sampath Kumar
2026-05-20 9:31 ` Mark Brown
2026-05-20 11:58 ` Mark Brown
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.