git: 5bcbdb0b2eb4 - main - mps: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 28 Apr 2023 10:03:22 UTC
The branch main has been updated by zlei:
URL: https://cgit.FreeBSD.org/src/commit/?id=5bcbdb0b2eb4c14ef0a8671c996337acdefb7f72
commit 5bcbdb0b2eb4c14ef0a8671c996337acdefb7f72
Author: Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2023-04-28 10:01:58 +0000
Commit: Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2023-04-28 10:01:58 +0000
mps: Fix a typo in a source code comment
- s/feild/field/
MFC after: 3 days
---
sys/dev/mps/mps.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/mps/mps.c b/sys/dev/mps/mps.c
index b3f470bf5a39..a703fb58e09a 100644
--- a/sys/dev/mps/mps.c
+++ b/sys/dev/mps/mps.c
@@ -2725,7 +2725,7 @@ mps_add_chain(struct mps_command *cm)
* sgc->Flags = ( MPI2_SGE_FLAGS_CHAIN_ELEMENT | MPI2_SGE_FLAGS_64_BIT_ADDRESSING |
* MPI2_SGE_FLAGS_SYSTEM_ADDRESS) << MPI2_SGE_FLAGS_SHIFT
* This is fine.. because we are not using simple element. In case of
- * MPI2_SGE_CHAIN64, we have separate Length and Flags feild.
+ * MPI2_SGE_CHAIN64, we have separate Length and Flags field.
*/
sgc->Flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT | MPI2_SGE_FLAGS_64_BIT_ADDRESSING;
sgc->Address.High = htole32(chain->chain_busaddr >> 32);