mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ravb: fix RX queue #1 frame error counter name
The Rx queue #1 frame error counter name contains trailing underscore, probably due to a typo... Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
248be83dcb
commit
b17c1d9a52
1 changed files with 1 additions and 1 deletions
|
@ -1037,7 +1037,7 @@ static const char ravb_gstrings_stats[][ETH_GSTRING_LEN] = {
|
||||||
"rx_queue_1_mcast_packets",
|
"rx_queue_1_mcast_packets",
|
||||||
"rx_queue_1_errors",
|
"rx_queue_1_errors",
|
||||||
"rx_queue_1_crc_errors",
|
"rx_queue_1_crc_errors",
|
||||||
"rx_queue_1_frame_errors_",
|
"rx_queue_1_frame_errors",
|
||||||
"rx_queue_1_length_errors",
|
"rx_queue_1_length_errors",
|
||||||
"rx_queue_1_missed_errors",
|
"rx_queue_1_missed_errors",
|
||||||
"rx_queue_1_over_errors",
|
"rx_queue_1_over_errors",
|
||||||
|
|
Loading…
Reference in a new issue