aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@mkall.org>2023-04-28 10:01:58 +0000
committerZhenlei Huang <zlei@FreeBSD.org>2023-05-17 09:57:07 +0000
commit1437712fd8c969847c339b43261a914b99b1aa05 (patch)
tree6d84cd392f8d5a8747475c6a7350651b664469cb
parent4d7d39b0f20874cda49771067f92e129840976fc (diff)
downloadsrc-1437712fd8c969847c339b43261a914b99b1aa05.tar.gz
src-1437712fd8c969847c339b43261a914b99b1aa05.zip
ixgbe: Fix typos in source code comments
- s/feilds/fields/ Reviewed by: zlei MFC after: 3 days Pull Request: https://github.com/freebsd/freebsd-src/pull/707 (cherry picked from commit 99cb088f1a2513ad71225b9691e0aed09ba8fafe)
-rw-r--r--sys/dev/ixgbe/ixgbe_api.c2
-rw-r--r--sys/dev/ixgbe/ixgbe_common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ixgbe/ixgbe_api.c b/sys/dev/ixgbe/ixgbe_api.c
index 80cf1ce1925d..12fc7d9cfd4e 100644
--- a/sys/dev/ixgbe/ixgbe_api.c
+++ b/sys/dev/ixgbe/ixgbe_api.c
@@ -1420,7 +1420,7 @@ s32 ixgbe_bypass_rw(struct ixgbe_hw *hw, u32 cmd, u32 *status)
* ixgbe_bypass_valid_rd - Verify valid return from bit-bang.
*
* If we send a write we can't be sure it took until we can read back
- * that same register. It can be a problem as some of the feilds may
+ * that same register. It can be a problem as some of the fields may
* for valid reasons change inbetween the time wrote the register and
* we read it again to verify. So this function check everything we
* can check and then assumes it worked.
diff --git a/sys/dev/ixgbe/ixgbe_common.c b/sys/dev/ixgbe/ixgbe_common.c
index 86301dab80ed..9c13b1b2663d 100644
--- a/sys/dev/ixgbe/ixgbe_common.c
+++ b/sys/dev/ixgbe/ixgbe_common.c
@@ -5151,7 +5151,7 @@ s32 ixgbe_bypass_rw_generic(struct ixgbe_hw *hw, u32 cmd, u32 *status)
* ixgbe_bypass_valid_rd_generic - Verify valid return from bit-bang.
*
* If we send a write we can't be sure it took until we can read back
- * that same register. It can be a problem as some of the feilds may
+ * that same register. It can be a problem as some of the fields may
* for valid reasons change inbetween the time wrote the register and
* we read it again to verify. So this function check everything we
* can check and then assumes it worked.