Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Oct 2021 03:03:19 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: 850aecac5866 - stable/12 - qlnxe: Fix typos in two error messages
Message-ID:  <202110090303.19933Je0082609@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=850aecac5866aa86fb8170eda61c4ec94bd5fc7d

commit 850aecac5866aa86fb8170eda61c4ec94bd5fc7d
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-10-02 08:49:51 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-10-09 03:03:03 +0000

    qlnxe: Fix typos in two error messages
    
    - s/erorr/error/
    
    (cherry picked from commit 957d9ba0c3f908462915c9aed6900c50c8c76210)
---
 sys/dev/qlnx/qlnxe/ecore_int.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/qlnx/qlnxe/ecore_int.c b/sys/dev/qlnx/qlnxe/ecore_int.c
index c1aaaccd2c1e..cc023b9caacc 100644
--- a/sys/dev/qlnx/qlnxe/ecore_int.c
+++ b/sys/dev/qlnx/qlnxe/ecore_int.c
@@ -364,7 +364,7 @@ enum _ecore_status_t ecore_pglueb_rbc_attn_handler(struct ecore_hwfn *p_hwfn,
 
 	tmp = ecore_rd(p_hwfn, p_ptt, PGLUE_B_REG_TX_ERR_WR_DETAILS_ICPL);
 	if (tmp & ECORE_PGLUE_ATTENTION_ICPL_VALID)
-		DP_NOTICE(p_hwfn, false, "ICPL eror - %08x\n", tmp);
+		DP_NOTICE(p_hwfn, false, "ICPL error - %08x\n", tmp);
 
 	tmp = ecore_rd(p_hwfn, p_ptt, PGLUE_B_REG_MASTER_ZLR_ERR_DETAILS);
 	if (tmp & ECORE_PGLUE_ATTENTION_ZLR_VALID) {
@@ -376,7 +376,7 @@ enum _ecore_status_t ecore_pglueb_rbc_attn_handler(struct ecore_hwfn *p_hwfn,
 				   PGLUE_B_REG_MASTER_ZLR_ERR_ADD_63_32);
 
 		DP_NOTICE(p_hwfn, false,
-			  "ICPL eror - %08x [Address %08x:%08x]\n",
+			  "ICPL error - %08x [Address %08x:%08x]\n",
 			  tmp, addr_hi, addr_lo);
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110090303.19933Je0082609>