From: David S. Miller Date: Wed, 17 Mar 2010 06:36:24 +0000 (-0700) Subject: e1000e: Fix build with CONFIG_PM disabled. X-Git-Tag: v2.6.35-rc1~473^2~750 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=e50208a080a8abdfa6c85865362a1cf329e9fe31;p=~emulex%2Finfiniband.git e1000e: Fix build with CONFIG_PM disabled. Signed-off-by: David S. Miller --- diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 79b33c512df..b96532a3832 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c @@ -5475,6 +5475,7 @@ static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = { }; MODULE_DEVICE_TABLE(pci, e1000_pci_tbl); +#ifdef CONFIG_PM static const struct dev_pm_ops e1000_pm_ops = { .suspend = e1000_suspend, .resume = e1000_resume, @@ -5486,6 +5487,7 @@ static const struct dev_pm_ops e1000_pm_ops = { .runtime_resume = e1000_runtime_resume, .runtime_idle = e1000_idle, }; +#endif /* PCI Device API Driver */ static struct pci_driver e1000_driver = {