79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
40 lines
2.1 KiB
Diff
40 lines
2.1 KiB
Diff
From 2e37d6ac7713c9962cb006900d18e83df54e8e0f Mon Sep 17 00:00:00 2001
|
|
From: zhujun2 <zhujun2_yewu@cmss.chinamobile.com>
|
|
Date: Fri, 24 Nov 2023 00:21:31 -0800
|
|
Subject: [PATCH] hw/net/cadence_gem.c: spelling fixes: Octects
|
|
|
|
Signed-off-by: zhujun2 <zhujun2_yewu@cmss.chinamobile.com>
|
|
---
|
|
hw/net/cadence_gem.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/hw/net/cadence_gem.c b/hw/net/cadence_gem.c
|
|
index 24b3a0ff66..21e1bd091f 100644
|
|
--- a/hw/net/cadence_gem.c
|
|
+++ b/hw/net/cadence_gem.c
|
|
@@ -81,8 +81,8 @@
|
|
#define GEM_IPGSTRETCH (0x000000BC / 4) /* IPG Stretch reg */
|
|
#define GEM_SVLAN (0x000000C0 / 4) /* Stacked VLAN reg */
|
|
#define GEM_MODID (0x000000FC / 4) /* Module ID reg */
|
|
-#define GEM_OCTTXLO (0x00000100 / 4) /* Octects transmitted Low reg */
|
|
-#define GEM_OCTTXHI (0x00000104 / 4) /* Octects transmitted High reg */
|
|
+#define GEM_OCTTXLO (0x00000100 / 4) /* Octets transmitted Low reg */
|
|
+#define GEM_OCTTXHI (0x00000104 / 4) /* Octets transmitted High reg */
|
|
#define GEM_TXCNT (0x00000108 / 4) /* Error-free Frames transmitted */
|
|
#define GEM_TXBCNT (0x0000010C / 4) /* Error-free Broadcast Frames */
|
|
#define GEM_TXMCNT (0x00000110 / 4) /* Error-free Multicast Frame */
|
|
@@ -101,8 +101,8 @@
|
|
#define GEM_LATECOLLCNT (0x00000144 / 4) /* Late Collision Frames */
|
|
#define GEM_DEFERTXCNT (0x00000148 / 4) /* Deferred Transmission Frames */
|
|
#define GEM_CSENSECNT (0x0000014C / 4) /* Carrier Sense Error Counter */
|
|
-#define GEM_OCTRXLO (0x00000150 / 4) /* Octects Received register Low */
|
|
-#define GEM_OCTRXHI (0x00000154 / 4) /* Octects Received register High */
|
|
+#define GEM_OCTRXLO (0x00000150 / 4) /* Octets Received register Low */
|
|
+#define GEM_OCTRXHI (0x00000154 / 4) /* Octets Received register High */
|
|
#define GEM_RXCNT (0x00000158 / 4) /* Error-free Frames Received */
|
|
#define GEM_RXBROADCNT (0x0000015C / 4) /* Error-free Broadcast Frames RX */
|
|
#define GEM_RXMULTICNT (0x00000160 / 4) /* Error-free Multicast Frames RX */
|
|
--
|
|
2.27.0
|
|
|