Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04da2cf9 authored by David S. Miller's avatar David S. Miller
Browse files

qlge: Protect qlge_resume() with CONFIG_PM



Fixes the following build warning:

drivers/net/qlge/qlge_main.c:3897: warning: ‘qlge_resume’ defined but not used

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53159d06
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3893,6 +3893,7 @@ static int qlge_suspend(struct pci_dev *pdev, pm_message_t state)
	return 0;
}

#ifdef CONFIG_PM
static int qlge_resume(struct pci_dev *pdev)
{
	struct net_device *ndev = pci_get_drvdata(pdev);
@@ -3921,6 +3922,7 @@ static int qlge_resume(struct pci_dev *pdev)

	return 0;
}
#endif /* CONFIG_PM */

static void qlge_shutdown(struct pci_dev *pdev)
{