diff options
author | 2015-06-29 18:40:08 -0400 | |
---|---|---|
committer | 2015-06-29 15:57:50 -0700 | |
commit | 1625fecf56e077e832dd0ce22cf4b629f0e3d9b7 (patch) | |
tree | 1114ac89189722d561eeb2238be3f8f20f9d8f5c /drivers/net/ethernet/icplus/ipg.c | |
parent | sis900: Trivial: Fix typos in enums (diff) | |
download | linux-dev-1625fecf56e077e832dd0ce22cf4b629f0e3d9b7.tar.xz linux-dev-1625fecf56e077e832dd0ce22cf4b629f0e3d9b7.zip |
net: icplus: fix typo in constant name
This fixes a typo in the IPG_FRAMETOOLONGERRORS constant.
Signed-off-by: Nik Nyby <nikolas@gnu.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/icplus/ipg.c')
-rw-r--r-- | drivers/net/ethernet/icplus/ipg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/icplus/ipg.c b/drivers/net/ethernet/icplus/ipg.c index ff2903652f4b..c3b6af83f070 100644 --- a/drivers/net/ethernet/icplus/ipg.c +++ b/drivers/net/ethernet/icplus/ipg.c @@ -1028,7 +1028,7 @@ static struct net_device_stats *ipg_nic_get_stats(struct net_device *dev) /* detailed rx_errors */ sp->stats.rx_length_errors += ipg_r16(IPG_INRANGELENGTHERRORS) + - ipg_r16(IPG_FRAMETOOLONGERRRORS); + ipg_r16(IPG_FRAMETOOLONGERRORS); sp->stats.rx_crc_errors += ipg_r16(IPG_FRAMECHECKSEQERRORS); /* Unutilized IPG statistic registers. */ |