git: 5ee87525a853 - main - cxgbe(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 02 Apr 2022 13:20:23 UTC
The branch main has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=5ee87525a853ebf50d834e69f814b9055996b964

commit 5ee87525a853ebf50d834e69f814b9055996b964
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-02 13:19:59 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-02 13:19:59 +0000

    cxgbe(4): Fix a typo in a source code comment
    
    - s/commmand/command/
    
    MFC after:      3 days
---
 sys/dev/cxgbe/cudbg/cudbg_wtp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/cxgbe/cudbg/cudbg_wtp.c b/sys/dev/cxgbe/cudbg/cudbg_wtp.c
index a72534d987e6..cbceee5bf388 100644
--- a/sys/dev/cxgbe/cudbg/cudbg_wtp.c
+++ b/sys/dev/cxgbe/cudbg/cudbg_wtp.c
@@ -323,7 +323,7 @@ static int t5_wtp_data(struct cudbg_init *pdbg_init,
 	/*# TX PATH, starting from pcie*/
 	/*#######################################################################*/
 
-	/* Get Reqests of commmands from SGE to PCIE*/
+	/* Get Reqests of commands from SGE to PCIE*/
 
 	wtp->sge_pcie_cmd_req.sop[0] =	sge_dbg_reg->debug_PC_Req_SOP0_cnt;
 	wtp->sge_pcie_cmd_req.sop[1] =	sge_dbg_reg->debug_PC_Req_SOP1_cnt;
@@ -331,7 +331,7 @@ static int t5_wtp_data(struct cudbg_init *pdbg_init,
 	wtp->sge_pcie_cmd_req.eop[0] =	sge_dbg_reg->debug_PC_Req_EOP0_cnt;
 	wtp->sge_pcie_cmd_req.eop[1] =	sge_dbg_reg->debug_PC_Req_EOP1_cnt;
 
-	/* Get Reqests of commmands from PCIE to core*/
+	/* Get Reqests of commands from PCIE to core*/
 	value = t4_read_reg(padap, A_PCIE_CMDR_REQ_CNT);
 
 	wtp->pcie_core_cmd_req.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/