Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213897
b: refs/heads/master
c: a2c483a
h: refs/heads/master
i:
  213895: 3a61209
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Aug 22, 2010
1 parent d702924 commit 6e101a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00959ade36acadc00e757f87060bf6e4501d545f
refs/heads/master: a2c483a19a96cf5cb9465f42cca34548b9211954
1 change: 0 additions & 1 deletion trunk/drivers/net/atl1c/atl1c.h
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,6 @@ struct atl1c_adapter {
struct napi_struct napi;
struct atl1c_hw hw;
struct atl1c_hw_stats hw_stats;
struct net_device_stats net_stats;
struct mii_if_info mii; /* MII interface info */
u16 rx_buffer_len;

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/net/atl1c/atl1c_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ static struct net_device_stats *atl1c_get_stats(struct net_device *netdev)
{
struct atl1c_adapter *adapter = netdev_priv(netdev);
struct atl1c_hw_stats *hw_stats = &adapter->hw_stats;
struct net_device_stats *net_stats = &adapter->net_stats;
struct net_device_stats *net_stats = &netdev->stats;

atl1c_update_hw_stats(adapter);
net_stats->rx_packets = hw_stats->rx_ok;
Expand Down Expand Up @@ -1590,7 +1590,7 @@ static struct net_device_stats *atl1c_get_stats(struct net_device *netdev)
net_stats->tx_aborted_errors = hw_stats->tx_abort_col;
net_stats->tx_window_errors = hw_stats->tx_late_col;

return &adapter->net_stats;
return net_stats;
}

static inline void atl1c_clear_phy_int(struct atl1c_adapter *adapter)
Expand Down Expand Up @@ -1700,7 +1700,7 @@ static irqreturn_t atl1c_intr(int irq, void *data)

/* link event */
if (status & (ISR_GPHY | ISR_MANUAL)) {
adapter->net_stats.tx_carrier_errors++;
netdev->stats.tx_carrier_errors++;
atl1c_link_chg_event(adapter);
break;
}
Expand Down

0 comments on commit 6e101a9

Please sign in to comment.