]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
e1000e: Enclose e1000e_pm_thaw() with CONFIG_PM_SLEEP
authorHiroaki SHIMODA <shimoda.hiroaki@gmail.com>
Tue, 15 Apr 2014 08:20:19 +0000 (08:20 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sat, 19 Apr 2014 01:11:36 +0000 (18:11 -0700)
Fix following compilation warning:
drivers/net/ethernet/intel/e1000e/netdev.c:6238:12: warning
‘e1000e_pm_thaw’ defined but not used [-Wunused-function]
 static int e1000e_pm_thaw(struct device *dev)
            ^
Signed-off-by: Hiroaki SHIMODA <shimoda.hiroaki@gmail.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/e1000e/netdev.c

index 165f7bcd66ae1d75794961ff4d4dab5dba0d3d4c..8926a13ae323befe253d810de6d274ee029b83d9 100644 (file)
@@ -6235,6 +6235,7 @@ static int __e1000_resume(struct pci_dev *pdev)
        return 0;
 }
 
+#ifdef CONFIG_PM_SLEEP
 static int e1000e_pm_thaw(struct device *dev)
 {
        struct net_device *netdev = pci_get_drvdata(to_pci_dev(dev));
@@ -6255,7 +6256,6 @@ static int e1000e_pm_thaw(struct device *dev)
        return 0;
 }
 
-#ifdef CONFIG_PM_SLEEP
 static int e1000e_pm_suspend(struct device *dev)
 {
        struct pci_dev *pdev = to_pci_dev(dev);