Skip to content

Commit

Permalink
Fix PLRU tree lint issue w.r.t. line length
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-platzer authored Dec 13, 2023
1 parent 1bad14c commit 0a5727f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/plru_tree.sv
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ module plru_tree #(

localparam int unsigned LogEntries = $clog2(ENTRIES);

function automatic logic [2*(ENTRIES-1)-1:0] plru_tree_update(logic [2*(ENTRIES-1)-1:0] plru_tree,
logic [ENTRIES-1:0] used);
function automatic logic [2*(ENTRIES-1)-1:0] plru_tree_update(
logic [2*(ENTRIES-1)-1:0] plru_tree, logic [ENTRIES-1:0] used
);
plru_tree_update = plru_tree;
// The PLRU-tree indexing:
// lvl0 0
Expand Down

0 comments on commit 0a5727f

Please sign in to comment.