git: b5332809c633 - main - cxgbe/iw_cxgbe: Fix typo in assertion.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 17 Aug 2024 18:34:24 UTC
The branch main has been updated by np: URL: https://cgit.FreeBSD.org/src/commit/?id=b5332809c633e7e37715f7823a8a8ee9799910a4 commit b5332809c633e7e37715f7823a8a8ee9799910a4 Author: Navdeep Parhar <np@FreeBSD.org> AuthorDate: 2024-07-22 17:19:58 +0000 Commit: Navdeep Parhar <np@FreeBSD.org> CommitDate: 2024-08-17 17:38:36 +0000 cxgbe/iw_cxgbe: Fix typo in assertion. eanbled -> enabled MFC after: 3 days --- sys/dev/cxgbe/iw_cxgbe/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgbe/iw_cxgbe/device.c b/sys/dev/cxgbe/iw_cxgbe/device.c index 279bdb20d511..209d12767a1c 100644 --- a/sys/dev/cxgbe/iw_cxgbe/device.c +++ b/sys/dev/cxgbe/iw_cxgbe/device.c @@ -284,7 +284,7 @@ c4iw_activate(struct adapter *sc) } if (uld_active(sc, ULD_IWARP)) { - KASSERT(0, ("%s: RDMA already eanbled on sc %p", __func__, sc)); + KASSERT(0, ("%s: RDMA already enabled on sc %p", __func__, sc)); return (0); }