From: kernel test robot <lkp@intel.com>
To: Krishna Chaitanya Chundru <krishna.chundru@oss.qualcomm.com>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Len Brown <lenb@kernel.org>, Pavel Machek <pavel@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Danilo Krummrich <dakr@kernel.org>,
Bjorn Helgaas <helgaas@kernel.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Linus Walleij <linusw@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
linux-gpio@vger.kernel.org, quic_vbadigan@quicinc.com,
quic_mrana@quicinc.com, sherry.sun@nxp.com,
driver-core@lists.linux.dev,
Krishna Chaitanya Chundru <krishna.chundru@oss.qualcomm.com>
Subject: Re: [PATCH v7 3/3] PCI: Add support for PCIe WAKE# interrupt
Date: Thu, 19 Feb 2026 00:58:34 +0800 [thread overview]
Message-ID: <202602190038.BHg9UcM5-lkp@intel.com> (raw)
In-Reply-To: <20260218-wakeirq_support-v7-3-0d4689830207@oss.qualcomm.com>
Hi Krishna,
kernel test robot noticed the following build errors:
[auto build test ERROR on cee73b1e840c154f64ace682cb477c1ae2e29cc4]
url: https://github.com/intel-lab-lkp/linux/commits/Krishna-Chaitanya-Chundru/PM-sleep-wakeirq-Add-support-for-dedicated-shared-wake-IRQ-setup/20260218-162247
base: cee73b1e840c154f64ace682cb477c1ae2e29cc4
patch link: https://lore.kernel.org/r/20260218-wakeirq_support-v7-3-0d4689830207%40oss.qualcomm.com
patch subject: [PATCH v7 3/3] PCI: Add support for PCIe WAKE# interrupt
config: sparc64-randconfig-002-20260218 (https://download.01.org/0day-ci/archive/20260219/202602190038.BHg9UcM5-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 12.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260219/202602190038.BHg9UcM5-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/202602190038.BHg9UcM5-lkp@intel.com/
All errors (new ones prefixed by >>):
sparc64-linux-ld: drivers/pci/pci.o: in function `platform_pci_configure_wake':
>> drivers/pci/pci.c:1128:(.text+0x39c8): undefined reference to `pci_configure_of_wake_gpio'
sparc64-linux-ld: drivers/pci/pci.o: in function `platform_pci_remove_wake':
>> drivers/pci/pci.c:1133:(.text+0x39d4): undefined reference to `pci_remove_of_wake_gpio'
vim +1128 drivers/pci/pci.c
1125
1126 void platform_pci_configure_wake(struct pci_dev *dev)
1127 {
> 1128 return pci_configure_of_wake_gpio(dev);
1129 }
1130
1131 void platform_pci_remove_wake(struct pci_dev *dev)
1132 {
> 1133 return pci_remove_of_wake_gpio(dev);
1134 }
1135 /**
1136 * pci_update_current_state - Read power state of given device and cache it
1137 * @dev: PCI device to handle.
1138 * @state: State to cache in case the device doesn't have the PM capability
1139 *
1140 * The power state is read from the PMCSR register, which however is
1141 * inaccessible in D3cold. The platform firmware is therefore queried first
1142 * to detect accessibility of the register. In case the platform firmware
1143 * reports an incorrect state or the device isn't power manageable by the
1144 * platform at all, we try to detect D3cold by testing accessibility of the
1145 * vendor ID in config space.
1146 */
1147 void pci_update_current_state(struct pci_dev *dev, pci_power_t state)
1148 {
1149 if (platform_pci_get_power_state(dev) == PCI_D3cold) {
1150 dev->current_state = PCI_D3cold;
1151 } else if (dev->pm_cap) {
1152 u16 pmcsr;
1153
1154 pci_read_config_word(dev, dev->pm_cap + PCI_PM_CTRL, &pmcsr);
1155 if (PCI_POSSIBLE_ERROR(pmcsr)) {
1156 dev->current_state = PCI_D3cold;
1157 return;
1158 }
1159 dev->current_state = pmcsr & PCI_PM_CTRL_STATE_MASK;
1160 } else {
1161 dev->current_state = state;
1162 }
1163 }
1164
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-02-18 16:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-18 8:12 [PATCH v7 0/3] PCI: Add support for PCIe WAKE# interrupt Krishna Chaitanya Chundru
2026-02-18 8:12 ` [PATCH v7 1/3] PM: sleep: wakeirq: Add support for dedicated shared wake IRQ setup Krishna Chaitanya Chundru
2026-02-18 8:12 ` [PATCH v7 2/3] gpio: Add fwnode_gpiod_get() helper Krishna Chaitanya Chundru
2026-02-19 17:45 ` Linus Walleij
2026-02-23 12:53 ` Manivannan Sadhasivam
2026-02-18 8:12 ` [PATCH v7 3/3] PCI: Add support for PCIe WAKE# interrupt Krishna Chaitanya Chundru
2026-02-18 13:49 ` kernel test robot
2026-02-18 16:58 ` kernel test robot [this message]
2026-02-23 14:07 ` Manivannan Sadhasivam
2026-02-25 12:32 ` Krishna Chaitanya Chundru
2026-02-18 10:01 ` [PATCH v7 0/3] " Bartosz Golaszewski
2026-02-24 8:13 ` Chen-Yu Tsai
2026-03-13 7:03 ` Krishna Chaitanya Chundru
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=202602190038.BHg9UcM5-lkp@intel.com \
--to=lkp@intel.com \
--cc=brgl@bgdev.pl \
--cc=dakr@kernel.org \
--cc=driver-core@lists.linux.dev \
--cc=gregkh@linuxfoundation.org \
--cc=helgaas@kernel.org \
--cc=krishna.chundru@oss.qualcomm.com \
--cc=lenb@kernel.org \
--cc=linusw@kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pavel@kernel.org \
--cc=quic_mrana@quicinc.com \
--cc=quic_vbadigan@quicinc.com \
--cc=rafael@kernel.org \
--cc=sherry.sun@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