Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1625fecf authored by Nik Nyby's avatar Nik Nyby Committed by David S. Miller
Browse files

net: icplus: fix typo in constant name



This fixes a typo in the IPG_FRAMETOOLONGERRORS constant.

Signed-off-by: default avatarNik Nyby <nikolas@gnu.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 47af6b0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1028,7 +1028,7 @@ static struct net_device_stats *ipg_nic_get_stats(struct net_device *dev)


	/* detailed rx_errors */
	/* detailed rx_errors */
	sp->stats.rx_length_errors += ipg_r16(IPG_INRANGELENGTHERRORS) +
	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);
	sp->stats.rx_crc_errors += ipg_r16(IPG_FRAMECHECKSEQERRORS);


	/* Unutilized IPG statistic registers. */
	/* Unutilized IPG statistic registers. */
+1 −1
Original line number Original line Diff line number Diff line
@@ -102,7 +102,7 @@ enum ipg_regs {
#define	IPG_MCSTFRAMESRCVDOK		0xB8
#define	IPG_MCSTFRAMESRCVDOK		0xB8
#define	IPG_BCSTFRAMESRCVDOK		0xBE
#define	IPG_BCSTFRAMESRCVDOK		0xBE
#define	IPG_MACCONTROLFRAMESRCVD	0xC6
#define	IPG_MACCONTROLFRAMESRCVD	0xC6
#define	IPG_FRAMETOOLONGERRRORS		0xC8
#define	IPG_FRAMETOOLONGERRORS		0xC8
#define	IPG_INRANGELENGTHERRORS		0xCA
#define	IPG_INRANGELENGTHERRORS		0xCA
#define	IPG_FRAMECHECKSEQERRORS		0xCC
#define	IPG_FRAMECHECKSEQERRORS		0xCC
#define	IPG_FRAMESLOSTRXERRORS		0xCE
#define	IPG_FRAMESLOSTRXERRORS		0xCE