Commit 66c03171 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

net: atheros: fix spelling mistake "underun" -> "underrun"

There are spelling mistakes in structure elements, fix these.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d0483053
...@@ -1721,7 +1721,7 @@ static void atl1_inc_smb(struct atl1_adapter *adapter) ...@@ -1721,7 +1721,7 @@ static void atl1_inc_smb(struct atl1_adapter *adapter)
adapter->soft_stats.scc += smb->tx_1_col; adapter->soft_stats.scc += smb->tx_1_col;
adapter->soft_stats.mcc += smb->tx_2_col; adapter->soft_stats.mcc += smb->tx_2_col;
adapter->soft_stats.latecol += smb->tx_late_col; adapter->soft_stats.latecol += smb->tx_late_col;
adapter->soft_stats.tx_underun += smb->tx_underrun; adapter->soft_stats.tx_underrun += smb->tx_underrun;
adapter->soft_stats.tx_trunc += smb->tx_trunc; adapter->soft_stats.tx_trunc += smb->tx_trunc;
adapter->soft_stats.tx_pause += smb->tx_pause; adapter->soft_stats.tx_pause += smb->tx_pause;
...@@ -3179,7 +3179,7 @@ static struct atl1_stats atl1_gstrings_stats[] = { ...@@ -3179,7 +3179,7 @@ static struct atl1_stats atl1_gstrings_stats[] = {
{"tx_deferred_ok", ATL1_STAT(soft_stats.deffer)}, {"tx_deferred_ok", ATL1_STAT(soft_stats.deffer)},
{"tx_single_coll_ok", ATL1_STAT(soft_stats.scc)}, {"tx_single_coll_ok", ATL1_STAT(soft_stats.scc)},
{"tx_multi_coll_ok", ATL1_STAT(soft_stats.mcc)}, {"tx_multi_coll_ok", ATL1_STAT(soft_stats.mcc)},
{"tx_underun", ATL1_STAT(soft_stats.tx_underun)}, {"tx_underrun", ATL1_STAT(soft_stats.tx_underrun)},
{"tx_trunc", ATL1_STAT(soft_stats.tx_trunc)}, {"tx_trunc", ATL1_STAT(soft_stats.tx_trunc)},
{"tx_pause", ATL1_STAT(soft_stats.tx_pause)}, {"tx_pause", ATL1_STAT(soft_stats.tx_pause)},
{"rx_pause", ATL1_STAT(soft_stats.rx_pause)}, {"rx_pause", ATL1_STAT(soft_stats.rx_pause)},
......
...@@ -681,7 +681,7 @@ struct atl1_sft_stats { ...@@ -681,7 +681,7 @@ struct atl1_sft_stats {
u64 scc; /* packets TX after a single collision */ u64 scc; /* packets TX after a single collision */
u64 mcc; /* packets TX after multiple collisions */ u64 mcc; /* packets TX after multiple collisions */
u64 latecol; /* TX packets w/ late collisions */ u64 latecol; /* TX packets w/ late collisions */
u64 tx_underun; /* TX packets aborted due to TX FIFO underrun u64 tx_underrun; /* TX packets aborted due to TX FIFO underrun
* or TRD FIFO underrun */ * or TRD FIFO underrun */
u64 tx_trunc; /* TX packets truncated due to size > MTU */ u64 tx_trunc; /* TX packets truncated due to size > MTU */
u64 rx_pause; /* num Pause packets received. */ u64 rx_pause; /* num Pause packets received. */
......
...@@ -553,7 +553,7 @@ static void atl2_intr_tx(struct atl2_adapter *adapter) ...@@ -553,7 +553,7 @@ static void atl2_intr_tx(struct atl2_adapter *adapter)
netdev->stats.tx_aborted_errors++; netdev->stats.tx_aborted_errors++;
if (txs->late_col) if (txs->late_col)
netdev->stats.tx_window_errors++; netdev->stats.tx_window_errors++;
if (txs->underun) if (txs->underrun)
netdev->stats.tx_fifo_errors++; netdev->stats.tx_fifo_errors++;
} while (1); } while (1);
......
...@@ -260,7 +260,7 @@ struct tx_pkt_status { ...@@ -260,7 +260,7 @@ struct tx_pkt_status {
unsigned multi_col:1; unsigned multi_col:1;
unsigned late_col:1; unsigned late_col:1;
unsigned abort_col:1; unsigned abort_col:1;
unsigned underun:1; /* current packet is aborted unsigned underrun:1; /* current packet is aborted
* due to txram underrun */ * due to txram underrun */
unsigned:3; /* reserved */ unsigned:3; /* reserved */
unsigned update:1; /* always 1'b1 in tx_status_buf */ unsigned update:1; /* always 1'b1 in tx_status_buf */
......
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