Skip to content

Commit ecb512f

Browse files
committed
library/util_axis_fifo_asym: guideline review
Fixes the source code to follow the guidelines. Cosmetic changes only. Signed-off-by: Carlos Souza <carlos.souza@analog.com>
1 parent ce39776 commit ecb512f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/util_axis_fifo_asym/util_axis_fifo_asym.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ***************************************************************************
22
// ***************************************************************************
3-
// Copyright (C) 2021-2025 Analog Devices, Inc. All rights reserved.
3+
// Copyright (C) 2021-2026 Analog Devices, Inc. All rights reserved.
44
//
55
// In this HDL repository, there are many different and unique modules, consisting
66
// of various HDL (Verilog or VHDL) components. The individual modules are
@@ -84,7 +84,7 @@ module util_axis_fifo_asym #(
8484

8585
localparam MEM_WORD = (TKEEP_EN & TLAST_EN) ? (A_WIDTH+A_WIDTH/8+1) :
8686
(TKEEP_EN) ? (A_WIDTH+A_WIDTH/8) :
87-
(TLAST_EN) ? (A_WIDTH+1) :
87+
(TLAST_EN) ? (A_WIDTH+1) :
8888
(A_WIDTH);
8989

9090
wire [MEM_WORD-1:0] slice_s_data [RATIO-1:0];

0 commit comments

Comments
 (0)