From: kernel test robot <lkp@intel.com>
To: Neeraj Sanjay Kale <neeraj.sanjaykale@nxp.com>,
marcel@holtmann.org, luiz.dentz@gmail.com, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org
Cc: oe-kbuild-all@lists.linux.dev, linux-bluetooth@vger.kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
amitkumar.karwar@nxp.com, rohit.fule@nxp.com,
neeraj.sanjaykale@nxp.com, sherry.sun@nxp.com,
ziniu.wang_1@nxp.com, haibo.chen@nxp.com, LnxRevLi@nxp.com
Subject: Re: [PATCH v4 2/2] Bluetooth: btnxpuart: Add GPIO support to power save feature
Date: Tue, 8 Oct 2024 16:11:12 +0800 [thread overview]
Message-ID: <202410081516.Mt35mvJk-lkp@intel.com> (raw)
In-Reply-To: <20241007131316.626690-3-neeraj.sanjaykale@nxp.com>
Hi Neeraj,
kernel test robot noticed the following build errors:
[auto build test ERROR on bluetooth/master]
[also build test ERROR on bluetooth-next/master robh/for-next linus/master v6.12-rc2 next-20241004]
[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/Neeraj-Sanjay-Kale/dt-bindings-net-bluetooth-nxp-Add-support-for-power-save-feature-using-GPIO/20241007-211315
base: https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git master
patch link: https://lore.kernel.org/r/20241007131316.626690-3-neeraj.sanjaykale%40nxp.com
patch subject: [PATCH v4 2/2] Bluetooth: btnxpuart: Add GPIO support to power save feature
config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20241008/202410081516.Mt35mvJk-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241008/202410081516.Mt35mvJk-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/202410081516.Mt35mvJk-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
In file included from drivers/bluetooth/btnxpuart.c:21:
drivers/bluetooth/btnxpuart.c: In function 'ps_setup':
>> drivers/bluetooth/btnxpuart.c:445:28: error: expected ')' before 'PTR_ERR'
445 | PTR_ERR(psdata->h2c_ps_gpio));
| ^~~~~~~
include/net/bluetooth/bluetooth.h:263:40: note: in definition of macro 'BT_ERR'
263 | #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__)
| ^~~
drivers/bluetooth/btnxpuart.c:444:17: note: in expansion of macro 'bt_dev_err'
444 | bt_dev_err(hdev, "Error fetching device-wakeup-gpios: %ld"
| ^~~~~~~~~~
include/net/bluetooth/bluetooth.h:263:39: note: to match this '('
263 | #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__)
| ^
include/net/bluetooth/bluetooth.h:278:9: note: in expansion of macro 'BT_ERR'
278 | BT_ERR("%s: " fmt, bt_dev_name(hdev), ##__VA_ARGS__)
| ^~~~~~
drivers/bluetooth/btnxpuart.c:444:17: note: in expansion of macro 'bt_dev_err'
444 | bt_dev_err(hdev, "Error fetching device-wakeup-gpios: %ld"
| ^~~~~~~~~~
>> include/net/bluetooth/bluetooth.h:278:16: warning: format '%s' expects a matching 'char *' argument [-Wformat=]
278 | BT_ERR("%s: " fmt, bt_dev_name(hdev), ##__VA_ARGS__)
| ^~~~~~
include/net/bluetooth/bluetooth.h:263:40: note: in definition of macro 'BT_ERR'
263 | #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__)
| ^~~
drivers/bluetooth/btnxpuart.c:444:17: note: in expansion of macro 'bt_dev_err'
444 | bt_dev_err(hdev, "Error fetching device-wakeup-gpios: %ld"
| ^~~~~~~~~~
include/net/bluetooth/bluetooth.h:278:18: note: format string is defined here
278 | BT_ERR("%s: " fmt, bt_dev_name(hdev), ##__VA_ARGS__)
| ~^
| |
| char *
>> include/net/bluetooth/bluetooth.h:278:16: warning: format '%ld' expects a matching 'long int' argument [-Wformat=]
278 | BT_ERR("%s: " fmt, bt_dev_name(hdev), ##__VA_ARGS__)
| ^~~~~~
include/net/bluetooth/bluetooth.h:263:40: note: in definition of macro 'BT_ERR'
263 | #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__)
| ^~~
drivers/bluetooth/btnxpuart.c:444:17: note: in expansion of macro 'bt_dev_err'
444 | bt_dev_err(hdev, "Error fetching device-wakeup-gpios: %ld"
| ^~~~~~~~~~
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for GET_FREE_REGION
Depends on [n]: SPARSEMEM [=n]
Selected by [m]:
- RESOURCE_KUNIT_TEST [=m] && RUNTIME_TESTING_MENU [=y] && KUNIT [=m]
vim +445 drivers/bluetooth/btnxpuart.c
434
435 static int ps_setup(struct hci_dev *hdev)
436 {
437 struct btnxpuart_dev *nxpdev = hci_get_drvdata(hdev);
438 struct serdev_device *serdev = nxpdev->serdev;
439 struct ps_data *psdata = &nxpdev->psdata;
440
441 psdata->h2c_ps_gpio = devm_gpiod_get_optional(&serdev->dev, "device-wakeup",
442 GPIOD_OUT_LOW);
443 if (IS_ERR(psdata->h2c_ps_gpio)) {
444 bt_dev_err(hdev, "Error fetching device-wakeup-gpios: %ld"
> 445 PTR_ERR(psdata->h2c_ps_gpio));
446 return PTR_ERR(psdata->h2c_ps_gpio);
447 }
448
449 if (!psdata->h2c_ps_gpio)
450 psdata->h2c_wakeup_gpio = 0xff;
451
452 psdata->hdev = hdev;
453 INIT_WORK(&psdata->work, ps_work_func);
454 mutex_init(&psdata->ps_lock);
455 timer_setup(&psdata->ps_timer, ps_timeout_func, 0);
456
457 return 0;
458 }
459
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-10-08 8:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-07 13:13 [PATCH v4 0/2] Bluetooth: btnxpuart: Add GPIO mechanism to Neeraj Sanjay Kale
2024-10-07 13:13 ` [PATCH v4 1/2] dt-bindings: net: bluetooth: nxp: Add support for power save feature using GPIO Neeraj Sanjay Kale
2024-10-07 13:13 ` [PATCH v4 2/2] Bluetooth: btnxpuart: Add GPIO support to power save feature Neeraj Sanjay Kale
2024-10-08 7:09 ` kernel test robot
2024-10-08 8:11 ` kernel test robot [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=202410081516.Mt35mvJk-lkp@intel.com \
--to=lkp@intel.com \
--cc=LnxRevLi@nxp.com \
--cc=amitkumar.karwar@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=haibo.chen@nxp.com \
--cc=krzk+dt@kernel.org \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luiz.dentz@gmail.com \
--cc=marcel@holtmann.org \
--cc=neeraj.sanjaykale@nxp.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=robh@kernel.org \
--cc=rohit.fule@nxp.com \
--cc=sherry.sun@nxp.com \
--cc=ziniu.wang_1@nxp.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;
as well as URLs for NNTP newsgroup(s).