Date: Sun, 17 Aug 2025 07:06:30 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 74eb496c1019 - main - bnxt(4): Fix typos in a comment and a kernel message Message-ID: <202508170706.57H76U8d002359@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=74eb496c1019f702a28b4fa757f1139fbcf44895 commit 74eb496c1019f702a28b4fa757f1139fbcf44895 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2025-08-17 07:04:49 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2025-08-17 07:04:49 +0000 bnxt(4): Fix typos in a comment and a kernel message - s/priviledged/privileged/ MFC after: 5 days --- 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?202508170706.57H76U8d002359>