[PATCH] drivers/pci/host/vmd: Fix suspend handlers unused warning

From: Borislav Petkov
Date: Sat Nov 26 2016 - 13:30:10 EST


From: Borislav Petkov <bp@xxxxxxx>

Fix:

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 <bp@xxxxxxx>
Cc: Keith Busch <keith.busch@xxxxxxxxx>
Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
Cc: linux-pci@xxxxxxxxxxxxxxx
---
drivers/pci/host/vmd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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);
--
2.10.0