From 798756ac8987303940638089f940a3a8071bf250 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Fri, 6 Mar 2026 19:38:59 -0800 Subject: [PATCH] dma: Fix incorrect width cast Signed-off-by: Alex Forencich --- src/dma/rtl/taxi_dma_client_axis_source.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dma/rtl/taxi_dma_client_axis_source.sv b/src/dma/rtl/taxi_dma_client_axis_source.sv index 4921919..d4a9d97 100644 --- a/src/dma/rtl/taxi_dma_client_axis_source.sv +++ b/src/dma/rtl/taxi_dma_client_axis_source.sv @@ -227,8 +227,8 @@ always_comb begin axis_cmd_axis_dest_next = desc_req.req_dest; axis_cmd_axis_user_next = desc_req.req_user; - axis_cmd_cycle_count_next = CYCLE_COUNT_W'(desc_req.req_len - LEN_W'(1)) >> $clog2(AXIS_KEEP_W_INT); - read_cycle_count_next = CYCLE_COUNT_W'(desc_req.req_len - LEN_W'(1)) >> $clog2(AXIS_KEEP_W_INT); + axis_cmd_cycle_count_next = CYCLE_COUNT_W'(desc_req.req_len - LEN_W'(1) >> $clog2(AXIS_KEEP_W_INT)); + read_cycle_count_next = CYCLE_COUNT_W'(desc_req.req_len - LEN_W'(1) >> $clog2(AXIS_KEEP_W_INT)); axis_cmd_valid_next = 1'b1;