aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igb
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2009-07-23 14:09:30 -0400
committerDavid S. Miller <davem@davemloft.net>2009-07-26 12:46:56 -0400
commit08a72b5dced32889594e08008cca0d0582f2d3d8 (patch)
tree0933ad191c568c5deaa6406a6bfeb2f480a8a573 /drivers/net/igb
parent5ac1665906559768029c398d9ede8e7cdd73004e (diff)
igb: remove unused switch statement from igb_set_wol
There is a switch statement in igb_set_wol that defaults to break and doesn't actually do anything. As such it should be removed. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igb')
-rw-r--r--drivers/net/igb/igb_ethtool.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/igb/igb_ethtool.c b/drivers/net/igb/igb_ethtool.c
index a9c37cb1bd7a..df2d234be229 100644
--- a/drivers/net/igb/igb_ethtool.c
+++ b/drivers/net/igb/igb_ethtool.c
@@ -1836,7 +1836,6 @@ static void igb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
1836static int igb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) 1836static int igb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
1837{ 1837{
1838 struct igb_adapter *adapter = netdev_priv(netdev); 1838 struct igb_adapter *adapter = netdev_priv(netdev);
1839 struct e1000_hw *hw = &adapter->hw;
1840 1839
1841 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) 1840 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
1842 return -EOPNOTSUPP; 1841 return -EOPNOTSUPP;
@@ -1845,11 +1844,6 @@ static int igb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
1845 !device_can_wakeup(&adapter->pdev->dev)) 1844 !device_can_wakeup(&adapter->pdev->dev))
1846 return wol->wolopts ? -EOPNOTSUPP : 0; 1845 return wol->wolopts ? -EOPNOTSUPP : 0;
1847 1846
1848 switch (hw->device_id) {
1849 default:
1850 break;
1851 }
1852
1853 /* these settings will always override what we currently have */ 1847 /* these settings will always override what we currently have */
1854 adapter->wol = 0; 1848 adapter->wol = 0;
1855 1849