Merge branch 'linux-2.6'
This commit is contained in:
@@ -96,9 +96,6 @@ static int fs_enet_rx_napi(struct napi_struct *napi, int budget)
|
||||
u16 pkt_len, sc;
|
||||
int curidx;
|
||||
|
||||
if (!netif_running(dev))
|
||||
return 0;
|
||||
|
||||
/*
|
||||
* First, grab all of the stats for the incoming packet.
|
||||
* These get messed up if we get called due to a busy condition.
|
||||
@@ -897,14 +894,21 @@ static void fs_get_regs(struct net_device *dev, struct ethtool_regs *regs,
|
||||
static int fs_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
||||
{
|
||||
struct fs_enet_private *fep = netdev_priv(dev);
|
||||
|
||||
if (!fep->phydev)
|
||||
return -ENODEV;
|
||||
|
||||
return phy_ethtool_gset(fep->phydev, cmd);
|
||||
}
|
||||
|
||||
static int fs_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
||||
{
|
||||
struct fs_enet_private *fep = netdev_priv(dev);
|
||||
phy_ethtool_sset(fep->phydev, cmd);
|
||||
return 0;
|
||||
|
||||
if (!fep->phydev)
|
||||
return -ENODEV;
|
||||
|
||||
return phy_ethtool_sset(fep->phydev, cmd);
|
||||
}
|
||||
|
||||
static int fs_nway_reset(struct net_device *dev)
|
||||
|
Reference in New Issue
Block a user