Re: git: d0b235c7152c - main - cxgbe: fix the build after e398922eaf66978b5e556f6b4b095693c865f329
Date: Wed, 21 Sep 2022 07:19:51 UTC
On 9/20/22 23:32, Mateusz Guzik wrote: > 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); > t4_calibtration -> t4_calibration --HPS