Commit e50208a0 authored by David S. Miller's avatar David S. Miller

e1000e: Fix build with CONFIG_PM disabled.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fa05e1ad
...@@ -5475,6 +5475,7 @@ static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = { ...@@ -5475,6 +5475,7 @@ static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
}; };
MODULE_DEVICE_TABLE(pci, e1000_pci_tbl); MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
#ifdef CONFIG_PM
static const struct dev_pm_ops e1000_pm_ops = { static const struct dev_pm_ops e1000_pm_ops = {
.suspend = e1000_suspend, .suspend = e1000_suspend,
.resume = e1000_resume, .resume = e1000_resume,
...@@ -5486,6 +5487,7 @@ static const struct dev_pm_ops e1000_pm_ops = { ...@@ -5486,6 +5487,7 @@ static const struct dev_pm_ops e1000_pm_ops = {
.runtime_resume = e1000_runtime_resume, .runtime_resume = e1000_runtime_resume,
.runtime_idle = e1000_idle, .runtime_idle = e1000_idle,
}; };
#endif
/* PCI Device API Driver */ /* PCI Device API Driver */
static struct pci_driver e1000_driver = { static struct pci_driver e1000_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment