Date: Sat, 9 Apr 2022 06:33:34 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: ed1226b5d51b - stable/12 - cxgbe(4): Fix a typo in a source code comment Message-ID: <202204090633.2396XYXA062141@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=ed1226b5d51b578e6460bc1bf8e2d9014b9cae9b commit ed1226b5d51b578e6460bc1bf8e2d9014b9cae9b Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-02 13:19:59 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-09 06:24:39 +0000 cxgbe(4): Fix a typo in a source code comment - s/commmand/command/ (cherry picked from commit 5ee87525a853ebf50d834e69f814b9055996b964) --- 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*/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204090633.2396XYXA062141>