From: kernel test robot <lkp@intel.com>
To: Bowen Yu <yubowen8@huawei.com>,
linuxarm@huawei.com, liudingyuan@h-partners.com,
andi.shyti@kernel.org, linux-i2c@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, zhanjie9@hisilicon.com,
prime.zeng@hisilicon.com, wanghuiqiang@huawei.com,
xuwei5@huawei.com, yubowen8@huawei.com
Subject: Re: [PATCH] i2c: hisi: Add I2C bus recovery support
Date: Wed, 26 Aug 2026 07:33:38 +0800 [thread overview]
Message-ID: <202608260721.whmqyiAk-lkp@intel.com> (raw)
In-Reply-To: <20260825033125.1893253-1-yubowen8@huawei.com>
Hi Bowen,
kernel test robot noticed the following build errors:
[auto build test ERROR on andi-shyti/i2c/i2c-host]
[also build test ERROR on linus/master v7.2 next-20260824]
[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/Bowen-Yu/i2c-hisi-Add-I2C-bus-recovery-support/20260825-113125
base: https://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux.git i2c/i2c-host
patch link: https://lore.kernel.org/r/20260825033125.1893253-1-yubowen8%40huawei.com
patch subject: [PATCH] i2c: hisi: Add I2C bus recovery support
config: nios2-allmodconfig (https://download.01.org/0day-ci/archive/20260826/202608260721.whmqyiAk-lkp@intel.com/config)
compiler: nios2-linux-gcc (GCC) 11.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260826/202608260721.whmqyiAk-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/202608260721.whmqyiAk-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/i2c/busses/i2c-hisi.c: In function 'hisi_i2c_unprepare_recovery':
>> drivers/i2c/busses/i2c-hisi.c:236:34: error: implicit declaration of function 'acpi_has_method'; did you mean 'acpi_has_watchdog'? [-Werror=implicit-function-declaration]
236 | if (ctlr->acpi_handle && acpi_has_method(ctlr->acpi_handle, "_RST")) {
| ^~~~~~~~~~~~~~~
| acpi_has_watchdog
In file included from include/linux/device.h:15,
from include/linux/acpi.h:15,
from drivers/i2c/busses/i2c-hisi.c:8:
include/linux/dev_printk.h:154:31: warning: '%s' directive argument is null [-Wformat-overflow=]
154 | dev_printk_index_wrap(_dev_err, KERN_ERR, dev, dev_fmt(fmt), ##__VA_ARGS__)
| ^
include/linux/dev_printk.h:110:17: note: in definition of macro 'dev_printk_index_wrap'
110 | _p_func(dev, fmt, ##__VA_ARGS__); \
| ^~~~~~~
drivers/i2c/busses/i2c-hisi.c:241:25: note: in expansion of macro 'dev_err'
241 | dev_err(ctlr->dev, "_RST method failed: %s\n",
| ^~~~~~~
drivers/i2c/busses/i2c-hisi.c:241:65: note: format string is defined here
241 | dev_err(ctlr->dev, "_RST method failed: %s\n",
| ^~
cc1: some warnings being treated as errors
vim +236 drivers/i2c/busses/i2c-hisi.c
221
222 static void hisi_i2c_unprepare_recovery(struct i2c_adapter *adap)
223 {
224 struct hisi_i2c_controller *ctlr = i2c_get_adapdata(adap);
225 u32 reg;
226
227 reg = readl(ctlr->sctrl_addr);
228 reg &= ~(HISI_I2C_CTRL_SCL_CFG_EN | HISI_I2C_CTRL_DAT_CFG_EN);
229 writel(reg, ctlr->sctrl_addr);
230
231 /*
232 * Invokes the specific ACPI method "_RST" for trigger a soft
233 * reset of I2C controller in order to help on I2C controller recover from
234 * the abnormal state after bus recovery process.
235 */
> 236 if (ctlr->acpi_handle && acpi_has_method(ctlr->acpi_handle, "_RST")) {
237 acpi_status status;
238
239 status = acpi_evaluate_object(ctlr->acpi_handle, "_RST", NULL, NULL);
240 if (ACPI_FAILURE(status))
241 dev_err(ctlr->dev, "_RST method failed: %s\n",
242 acpi_format_exception(status));
243 }
244
245 hisi_i2c_configure_bus(ctlr);
246 }
247
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-08-25 23:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-25 3:31 [PATCH] i2c: hisi: Add I2C bus recovery support Bowen Yu
2026-08-25 23:33 ` kernel test robot [this message]
2026-08-26 0:26 ` kernel test robot
2026-08-26 0:51 ` kernel test robot
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=202608260721.whmqyiAk-lkp@intel.com \
--to=lkp@intel.com \
--cc=andi.shyti@kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=liudingyuan@h-partners.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=prime.zeng@hisilicon.com \
--cc=wanghuiqiang@huawei.com \
--cc=xuwei5@huawei.com \
--cc=yubowen8@huawei.com \
--cc=zhanjie9@hisilicon.com \
/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