From: kernel test robot <lkp@intel.com>
To: Jishnu Prakash <jishnu.prakash@oss.qualcomm.com>,
Heikki Krogerus <heikki.krogerus@linux.intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: oe-kbuild-all@lists.linux.dev,
Dmitry Baryshkov <lumag@kernel.org>,
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>,
Deepak Kumar Singh <deepak.singh@oss.qualcomm.com>,
Kamal Wadhwa <kamal.wadhwa@oss.qualcomm.com>,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
Jishnu Prakash <jishnu.prakash@oss.qualcomm.com>
Subject: Re: [PATCH] usb: typec: ucsi: ucsi_glink: Prevent suspend during UCSI notification handling
Date: Sat, 11 Jul 2026 01:14:20 +0800 [thread overview]
Message-ID: <202607110115.YSVz17MH-lkp@intel.com> (raw)
In-Reply-To: <20260710-ucsi_glink_wakeup-v1-1-7d97ea628d92@oss.qualcomm.com>
Hi Jishnu,
kernel test robot noticed the following build errors:
[auto build test ERROR on 2cb6eac064c8334418a76999468f68696a8dfe71]
url: https://github.com/intel-lab-lkp/linux/commits/Jishnu-Prakash/usb-typec-ucsi-ucsi_glink-Prevent-suspend-during-UCSI-notification-handling/20260710-182232
base: 2cb6eac064c8334418a76999468f68696a8dfe71
patch link: https://lore.kernel.org/r/20260710-ucsi_glink_wakeup-v1-1-7d97ea628d92%40oss.qualcomm.com
patch subject: [PATCH] usb: typec: ucsi: ucsi_glink: Prevent suspend during UCSI notification handling
config: nios2-allmodconfig (https://download.01.org/0day-ci/archive/20260711/202607110115.YSVz17MH-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/20260711/202607110115.YSVz17MH-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/202607110115.YSVz17MH-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/usb/typec/ucsi/ucsi_glink.c: In function 'pmic_glink_ucsi_callback':
>> drivers/usb/typec/ucsi/ucsi_glink.c:352:53: error: 'struct dev_pm_info' has no member named 'wakeup'; did you mean 'can_wakeup'?
352 | pm_wakeup_ws_event(ucsi->dev->power.wakeup,
| ^~~~~~
| can_wakeup
vim +352 drivers/usb/typec/ucsi/ucsi_glink.c
338
339 static void pmic_glink_ucsi_callback(const void *data, size_t len, void *priv)
340 {
341 struct pmic_glink_ucsi *ucsi = priv;
342 const struct pmic_glink_hdr *hdr = data;
343
344 switch (le32_to_cpu(hdr->opcode)) {
345 case UC_UCSI_READ_BUF_REQ:
346 pmic_glink_ucsi_read_ack(ucsi, data, len);
347 break;
348 case UC_UCSI_WRITE_BUF_REQ:
349 pmic_glink_ucsi_write_ack(ucsi, data, len);
350 break;
351 case UC_UCSI_USBC_NOTIFY_IND:
> 352 pm_wakeup_ws_event(ucsi->dev->power.wakeup,
353 UCSI_GLINK_WAKEUP_TIMEOUT_MS, true);
354 schedule_work(&ucsi->notify_work);
355 break;
356 }
357 }
358
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-07-10 17:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 10:21 [PATCH] usb: typec: ucsi: ucsi_glink: Prevent suspend during UCSI notification handling Jishnu Prakash
2026-07-10 17:14 ` kernel test robot [this message]
2026-07-10 19:17 ` 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=202607110115.YSVz17MH-lkp@intel.com \
--to=lkp@intel.com \
--cc=deepak.singh@oss.qualcomm.com \
--cc=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=jishnu.prakash@oss.qualcomm.com \
--cc=kamal.wadhwa@oss.qualcomm.com \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=lumag@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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 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.