Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Sep 2022 21:32:22 GMT
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d0b235c7152c - main - cxgbe: fix the build after e398922eaf66978b5e556f6b4b095693c865f329
Message-ID:  <202209202132.28KLWM3b071948@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mjg:

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

commit d0b235c7152cde08c741f08e5e0834eb07651799
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2022-09-20 21:31:49 +0000
Commit:     Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2022-09-20 21:31:49 +0000

    cxgbe: fix the build after e398922eaf66978b5e556f6b4b095693c865f329
---
 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 e3236dab0ed0..fd3079b700b5 100644
--- a/sys/dev/cxgbe/t4_main.c
+++ b/sys/dev/cxgbe/t4_main.c
@@ -1150,7 +1150,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?202209202132.28KLWM3b071948>