aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/pci.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2019-10-21 16:25:20 +0200
committerTakashi Iwai <tiwai@suse.de>2019-10-21 16:27:29 +0200
commit46b4bff6572b0552b1ee062043621e4b252638d8 (patch)
tree72acbe13eddeb3d41aea8b79cb3860dc7dc06c14 /include/linux/pci.h
parentALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a driver (diff)
downloadwireguard-linux-46b4bff6572b0552b1ee062043621e4b252638d8.tar.xz
wireguard-linux-46b4bff6572b0552b1ee062043621e4b252638d8.zip
PCI: Fix missing inline for pci_pr3_present()
The inline prefix was missing in the dummy function pci_pr3_present() definition. Fix it. Reported-by: kbuild test robot <lkp@intel.com> Fixes: 52525b7a3cf8 ("PCI: Add a helper to check Power Resource Requirements _PR3 existence") Link: https://lore.kernel.org/r/201910212111.qHm6OcWx%lkp@intel.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r--include/linux/pci.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 1d15c5d49cdd..be529d311122 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -2314,7 +2314,7 @@ bool pci_pr3_present(struct pci_dev *pdev);
#else
static inline struct irq_domain *
pci_host_bridge_acpi_msi_domain(struct pci_bus *bus) { return NULL; }
-static bool pci_pr3_present(struct pci_dev *pdev) { return false; }
+static inline bool pci_pr3_present(struct pci_dev *pdev) { return false; }
#endif
#ifdef CONFIG_EEH