aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/safexcel/safexcel.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/safexcel/safexcel.c')
-rw-r--r--sys/dev/safexcel/safexcel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/safexcel/safexcel.c b/sys/dev/safexcel/safexcel.c
index d7fee9b42a29..e59a82e01195 100644
--- a/sys/dev/safexcel/safexcel.c
+++ b/sys/dev/safexcel/safexcel.c
@@ -1896,8 +1896,8 @@ safexcel_cmd_descr_add(struct safexcel_ring *ring, bool first, bool last,
struct safexcel_cmd_descr *cdesc;
struct safexcel_cmd_descr_ring *cring;
- KASSERT(full_data_len <= SAFEXCEL_MAX_REQUEST_SIZE,
- ("%s: request length %u too long", __func__, full_data_len));
+ KASSERT(reqlen <= SAFEXCEL_MAX_REQUEST_SIZE,
+ ("%s: request length %u too long", __func__, reqlen));
mtx_assert(&ring->mtx, MA_OWNED);
cring = &ring->cdr;