All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v2 2/4] i2c: add Andes I2C driver support
@ 2026-01-22 15:15 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2026-01-22 15:15 UTC (permalink / raw)
  To: oe-kbuild; +Cc: lkp

:::::: 
:::::: Manual check reason: "low confidence static check warning: drivers/i2c/busses/i2c-andes.c:339:1: sparse: sparse: bad integer constant expression"
:::::: 

BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20260122-atciic100-v2-2-7559136d07cf@andestech.com>
References: <20260122-atciic100-v2-2-7559136d07cf@andestech.com>
TO: "Ben Zong-You Xie via B4 Relay" <devnull+ben717.andestech.com@kernel.org>
TO: Andi Shyti <andi.shyti@kernel.org>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: Paul Walmsley <pjw@kernel.org>
TO: Palmer Dabbelt <palmer@dabbelt.com>
TO: Albert Ou <aou@eecs.berkeley.edu>
TO: Alexandre Ghiti <alex@ghiti.fr>
CC: linux-i2c@vger.kernel.org
CC: devicetree@vger.kernel.org
CC: linux-kernel@vger.kernel.org
CC: linux-riscv@lists.infradead.org
CC: "Ben Zong-You Xie" <ben717@andestech.com>

Hi Ben,

kernel test robot noticed the following build warnings:

[auto build test WARNING on aa5804b8fb64f446260cee45e7e8a722ac7ca839]

url:    https://github.com/intel-lab-lkp/linux/commits/Ben-Zong-You-Xie-via-B4-Relay/dt-bindings-i2c-add-support-for-AE350-I2C-controller/20260122-115843
base:   aa5804b8fb64f446260cee45e7e8a722ac7ca839
patch link:    https://lore.kernel.org/r/20260122-atciic100-v2-2-7559136d07cf%40andestech.com
patch subject: [PATCH v2 2/4] i2c: add Andes I2C driver support
:::::: branch date: 11 hours ago
:::::: commit date: 11 hours ago
config: mips-randconfig-r133-20260122 (https://download.01.org/0day-ci/archive/20260122/202601222235.v6MYfKJs-lkp@intel.com/config)
compiler: mips-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260122/202601222235.v6MYfKJs-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/r/202601222235.v6MYfKJs-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
>> drivers/i2c/busses/i2c-andes.c:339:1: sparse: sparse: bad integer constant expression
   drivers/i2c/busses/i2c-andes.c:339:1: sparse: sparse: static assertion failed: "MODULE_INFO(author, ...) contains embedded NUL byte"
   drivers/i2c/busses/i2c-andes.c:340:1: sparse: sparse: bad integer constant expression
   drivers/i2c/busses/i2c-andes.c:340:1: sparse: sparse: static assertion failed: "MODULE_INFO(description, ...) contains embedded NUL byte"
   drivers/i2c/busses/i2c-andes.c:341:1: sparse: sparse: bad integer constant expression
   drivers/i2c/busses/i2c-andes.c:341:1: sparse: sparse: static assertion failed: "MODULE_INFO(file, ...) contains embedded NUL byte"
   drivers/i2c/busses/i2c-andes.c:341:1: sparse: sparse: bad integer constant expression
   drivers/i2c/busses/i2c-andes.c:341:1: sparse: sparse: static assertion failed: "MODULE_INFO(license, ...) contains embedded NUL byte"

vim +339 drivers/i2c/busses/i2c-andes.c

d73a2e5b4946bf Ben Zong-You Xie 2026-01-22  338  
d73a2e5b4946bf Ben Zong-You Xie 2026-01-22 @339  MODULE_AUTHOR("Ben Zong-You Xie <ben717@andestech.com>");

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

^ permalink raw reply	[flat|nested] 4+ messages in thread
* [PATCH v2 0/4] i2c: add support for Andes platform
@ 2026-01-22  3:53 Ben Zong-You Xie
  2026-01-22  3:53   ` Ben Zong-You Xie via B4 Relay
  0 siblings, 1 reply; 4+ messages in thread
From: Ben Zong-You Xie @ 2026-01-22  3:53 UTC (permalink / raw)
  To: Andi Shyti, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti
  Cc: linux-i2c, devicetree, linux-kernel, linux-riscv,
	Ben Zong-You Xie

This patch series adds I2C support to Andes platform, such as AE350 and
QiLai SoC.

Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
---
Changes in v2:
- ATCIIC100 is the hardware name for the Andes I2C controller and was used
  throughout v1. However, since Device Tree bindings should reflect the hardware
  identity and driver/config naming typically follows the i2c-<soc/platform>
  convention, this version replaces occurrences of "atciic100" with more
  appropriate names, such as "i2c-andes" or "andes_i2c," to align with upstream
  standards.
- Updated cover letter title and the description.
- Rebased on andi.shyti/i2c/i2c-host-next.
- (1/4)
  - Updated the title and the description of the patch.
  - Specified what the hardware is, and modify the title and compatibles. (Krzysztof)
  - Corrected device register size.
- (2/4)
  - Updated the title and the description of the patch.
  - Replaced the readl/writel operations with regmap APIs.
  - Replaced all occurrences of atciic100 with proper names.
  - Used module_platform_driver() to initialize. (Andi)
  - Moved CONFIG_I2C_ANDES (CONFIG_I2C_ATCIIC100 in v1) to the
    "Embedded system I2C/SMBus host controller drivers" section.
  - Made CONFIG_I2C_ANDES depend on ARCH_ANDES
- (3/4) (new)
  - Added an entry to the MAINTAINERS file.
- (4/4) (new)
  - Added the I2C node to QiLai DTS.

- Link to v1: https://patch.msgid.link/20250207021923.2912373-1-ben717@andestech.com

---
Ben Zong-You Xie (4):
      dt-bindings: i2c: add support for AE350 I2C controller
      i2c: add Andes I2C driver support
      MAINTAINERS: add an entry for Andes I2C driver
      riscv: dts: andes: qilai: add I2C controller

 .../bindings/i2c/andestech,ae350-i2c.yaml          |  45 +++
 MAINTAINERS                                        |   6 +
 arch/riscv/boot/dts/andes/qilai.dtsi               |   7 +
 drivers/i2c/busses/Kconfig                         |  10 +
 drivers/i2c/busses/Makefile                        |   1 +
 drivers/i2c/busses/i2c-andes.c                     | 341 +++++++++++++++++++++
 6 files changed, 410 insertions(+)
---
base-commit: aa5804b8fb64f446260cee45e7e8a722ac7ca839
change-id: 20260120-atciic100-da3ec68f7bb4

Best regards,
--  
Ben Zong-You Xie <ben717@andestech.com>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-01-22 15:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-22 15:15 [PATCH v2 2/4] i2c: add Andes I2C driver support kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2026-01-22  3:53 [PATCH v2 0/4] i2c: add support for Andes platform Ben Zong-You Xie
2026-01-22  3:53 ` [PATCH v2 2/4] i2c: add Andes I2C driver support Ben Zong-You Xie
2026-01-22  3:53   ` Ben Zong-You Xie via B4 Relay
2026-01-22  3:53   ` Ben Zong-You Xie via B4 Relay

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.