git: 3056dfbdf815 - stable/13 - mps: Fix a typo in a source code comment

From: Zhenlei Huang <zlei_at_FreeBSD.org>
Date: Wed, 17 May 2023 09:59:15 UTC
The branch stable/13 has been updated by zlei:

URL: https://cgit.FreeBSD.org/src/commit/?id=3056dfbdf815d0536ab045b1aa3d600260a19e95

commit 3056dfbdf815d0536ab045b1aa3d600260a19e95
Author:     Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2023-04-28 10:01:58 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2023-05-17 09:57:08 +0000

    mps: Fix a typo in a source code comment
    
    - s/feild/field/
    
    MFC after:      3 days
    
    (cherry picked from commit 5bcbdb0b2eb4c14ef0a8671c996337acdefb7f72)
---
 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 956a0301e70a..7ff596d66085 100644
--- a/sys/dev/mps/mps.c
+++ b/sys/dev/mps/mps.c
@@ -2722,7 +2722,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_CHAIN32, we have separate Length and Flags feild.
+	 *	MPI2_SGE_CHAIN32, we have separate Length and Flags field.
  	 */
 	sgc->Flags = MPI2_SGE_FLAGS_CHAIN_ELEMENT;
 	sgc->Address = htole32(chain->chain_busaddr);