Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Aug 2025 05:25:46 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: 4e8ac151bca9 - stable/14 - bnxt(4): Fix typos in a comment and a kernel message
Message-ID:  <202508220525.57M5PkVD089058@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=4e8ac151bca92afbca258718a689d30a87e49d31

commit 4e8ac151bca92afbca258718a689d30a87e49d31
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-08-17 07:04:49 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-08-22 05:24:14 +0000

    bnxt(4): Fix typos in a comment and a kernel message
    
    - s/priviledged/privileged/
    
    (cherry picked from commit 74eb496c1019f702a28b4fa757f1139fbcf44895)
---
 sys/dev/bnxt/bnxt_re/qplib_res.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/bnxt/bnxt_re/qplib_res.c b/sys/dev/bnxt/bnxt_re/qplib_res.c
index 69661c67708c..f527af031176 100644
--- a/sys/dev/bnxt/bnxt_re/qplib_res.c
+++ b/sys/dev/bnxt/bnxt_re/qplib_res.c
@@ -875,7 +875,7 @@ int bnxt_qplib_alloc_dpi(struct bnxt_qplib_res	*res,
 	dpi->umdbr = umaddr;
 	switch (type) {
 	case BNXT_QPLIB_DPI_TYPE_KERNEL:
-		/* priviledged dbr was already mapped just initialize it. */
+		/* privileged dbr was already mapped just initialize it. */
 		dpi->umdbr = dpit->ucreg.bar_base +
 			     dpit->ucreg.offset + bit_num * PAGE_SIZE;
 		dpi->dbr = dpit->priv_db;
@@ -1150,7 +1150,7 @@ int bnxt_qplib_map_db_bar(struct bnxt_qplib_res *res)
 	}
 	ucreg->bar_reg = ioremap(ucreg->bar_base, ucreg->len);
 	if (!ucreg->bar_reg) {
-		dev_err(&res->pdev->dev, "priviledged dpi map failed!\n");
+		dev_err(&res->pdev->dev, "privileged dpi map failed!\n");
 		return -ENOMEM;
 	}
 



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