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

Commit 55d91614 authored by Nik Nyby's avatar Nik Nyby Committed by David S. Miller
Browse files

stmmac: Trivial: fix typo in constant name



This fixes a typo in the MMC_RX_CRC_ERROR constant.

Signed-off-by: default avatarNik Nyby <nikolas@gnu.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 29c4afc4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@
#define MMC_RX_OCTETCOUNT_G		0x00000188
#define MMC_RX_BROADCASTFRAME_G		0x0000018c
#define MMC_RX_MULTICASTFRAME_G		0x00000190
#define MMC_RX_CRC_ERRROR		0x00000194
#define MMC_RX_CRC_ERROR		0x00000194
#define MMC_RX_ALIGN_ERROR		0x00000198
#define MMC_RX_RUN_ERROR		0x0000019C
#define MMC_RX_JABBER_ERROR		0x000001A0
@@ -196,7 +196,7 @@ void dwmac_mmc_read(void __iomem *ioaddr, struct stmmac_counters *mmc)
	mmc->mmc_rx_octetcount_g += readl(ioaddr + MMC_RX_OCTETCOUNT_G);
	mmc->mmc_rx_broadcastframe_g += readl(ioaddr + MMC_RX_BROADCASTFRAME_G);
	mmc->mmc_rx_multicastframe_g += readl(ioaddr + MMC_RX_MULTICASTFRAME_G);
	mmc->mmc_rx_crc_error += readl(ioaddr + MMC_RX_CRC_ERRROR);
	mmc->mmc_rx_crc_error += readl(ioaddr + MMC_RX_CRC_ERROR);
	mmc->mmc_rx_align_error += readl(ioaddr + MMC_RX_ALIGN_ERROR);
	mmc->mmc_rx_run_error += readl(ioaddr + MMC_RX_RUN_ERROR);
	mmc->mmc_rx_jabber_error += readl(ioaddr + MMC_RX_JABBER_ERROR);