Date: Fri, 11 Nov 2022 01:48:20 GMT From: John Baldwin <jhb@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 42e8cd31c16a - stable/13 - cxgbe: fix the build after e398922eaf66978b5e556f6b4b095693c865f329 Message-ID: <202211110148.2AB1mKpc056455@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=42e8cd31c16a1f4dfd9cf1c8487a088b8e3eb384 commit 42e8cd31c16a1f4dfd9cf1c8487a088b8e3eb384 Author: Mateusz Guzik <mjg@FreeBSD.org> AuthorDate: 2022-09-20 21:31:49 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-11-11 01:25:57 +0000 cxgbe: fix the build after e398922eaf66978b5e556f6b4b095693c865f329 (cherry picked from commit d0b235c7152cde08c741f08e5e0834eb07651799) --- sys/dev/cxgbe/t4_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c index a71b35abb5b7..e06a3cf807a3 100644 --- a/sys/dev/cxgbe/t4_main.c +++ b/sys/dev/cxgbe/t4_main.c @@ -1151,7 +1151,7 @@ t4_calibration(void *arg) } nex->hw_prev = cur->hw_cur; nex->rt_prev = cur->rt_cur; - KASSERT((hw_off_limits(sc) == 0), "hw_off_limits at t4_calibtration"); + KASSERT((hw_off_limits(sc) == 0), ("hw_off_limits at t4_calibtration")); nex->hw_cur = t4_read_reg64(sc, A_SGE_TIMESTAMP_LO); nanouptime(&ts); nex->rt_cur = t4_get_ns_timestamp(&ts);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211110148.2AB1mKpc056455>