From: Borislav Petkov Date: Sat, 26 Nov 2016 18:29:57 +0000 (+0100) Subject: PCI: vmd: Fix suspend handlers defined-but-not-used warning X-Git-Tag: C0P2-H0.0--20200415~5102 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=8947af550462c600d90cd672dad732a1575b9f36;p=linux.git PCI: vmd: Fix suspend handlers defined-but-not-used warning commit 42db500a551f97551a901e2258f84a60baf4edfc upstream. Fix the following warnings: drivers/pci/host/vmd.c:731:12: warning: ‘vmd_suspend’ defined but not used [-Wunused-function] static int vmd_suspend(struct device *dev) ^ drivers/pci/host/vmd.c:739:12: warning: ‘vmd_resume’ defined but not used [-Wunused-function] static int vmd_resume(struct device *dev) ^ Signed-off-by: Borislav Petkov Signed-off-by: Bjorn Helgaas Reviewed-by: Keith Busch Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/pci/host/vmd.c b/drivers/pci/host/vmd.c index 37e29b580be3..0e7f8f319fe3 100644 --- a/drivers/pci/host/vmd.c +++ b/drivers/pci/host/vmd.c @@ -727,7 +727,7 @@ static void vmd_remove(struct pci_dev *dev) irq_domain_remove(vmd->irq_domain); } -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP static int vmd_suspend(struct device *dev) { struct pci_dev *pdev = to_pci_dev(dev);