All of lore.kernel.org
 help / color / mirror / Atom feed
* [helgaas-pci:pci/pm 1/1] drivers/pci/pci-driver.c:1315:9: error: implicit declaration of function 'pci_pm_default_resume_early'; did you mean 'pci_pm_default_resume'?
@ 2022-04-07 18:09 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2022-04-07 18:09 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: kbuild-all, linux-pci, Bjorn Helgaas, Mika Westerberg

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git pci/pm
head:   53b3488879cff3b3a238e3e9651c2e2879f422cf
commit: 53b3488879cff3b3a238e3e9651c2e2879f422cf [1/1] PCI/PM: Power up all devices during runtime resume
config: i386-randconfig-a014 (https://download.01.org/0day-ci/archive/20220408/202204080225.iXDZAkO2-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.2.0-19) 11.2.0
reproduce (this is a W=1 build):
        # https://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git/commit/?id=53b3488879cff3b3a238e3e9651c2e2879f422cf
        git remote add helgaas-pci https://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
        git fetch --no-tags helgaas-pci pci/pm
        git checkout 53b3488879cff3b3a238e3e9651c2e2879f422cf
        # save the config file to linux build tree
        mkdir build_dir
        make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/pci/pci-driver.c: In function 'pci_pm_runtime_resume':
>> drivers/pci/pci-driver.c:1315:9: error: implicit declaration of function 'pci_pm_default_resume_early'; did you mean 'pci_pm_default_resume'? [-Werror=implicit-function-declaration]
    1315 |         pci_pm_default_resume_early(pci_dev);
         |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~
         |         pci_pm_default_resume
   At top level:
   drivers/pci/pci-driver.c:533:12: warning: 'pci_restore_standard_config' defined but not used [-Wunused-function]
     533 | static int pci_restore_standard_config(struct pci_dev *pci_dev)
         |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +1315 drivers/pci/pci-driver.c

  1302	
  1303	static int pci_pm_runtime_resume(struct device *dev)
  1304	{
  1305		struct pci_dev *pci_dev = to_pci_dev(dev);
  1306		const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
  1307		pci_power_t prev_state = pci_dev->current_state;
  1308		int error = 0;
  1309	
  1310		/*
  1311		 * Restoring config space is necessary even if the device is not bound
  1312		 * to a driver because although we left it in D0, it may have gone to
  1313		 * D3cold when the bridge above it runtime suspended.
  1314		 */
> 1315		pci_pm_default_resume_early(pci_dev);
  1316	
  1317		if (!pci_dev->driver)
  1318			return 0;
  1319	
  1320		pci_fixup_device(pci_fixup_resume_early, pci_dev);
  1321		pci_pm_default_resume(pci_dev);
  1322	
  1323		if (prev_state == PCI_D3cold)
  1324			pci_bridge_wait_for_secondary_bus(pci_dev);
  1325	
  1326		if (pm && pm->runtime_resume)
  1327			error = pm->runtime_resume(dev);
  1328	
  1329		pci_dev->runtime_d3cold = false;
  1330	
  1331		return error;
  1332	}
  1333	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-07 18:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-07 18:09 [helgaas-pci:pci/pm 1/1] drivers/pci/pci-driver.c:1315:9: error: implicit declaration of function 'pci_pm_default_resume_early'; did you mean 'pci_pm_default_resume'? kernel test robot

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.