Skip to content

Commit 3292d10

Browse files
committed
[rtl] Fix linter warnings
1 parent 0f2f6ca commit 3292d10

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rtl/ibex_ex_block.sv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ module ibex_ex_block #(
197197
assign ex_valid_o = multdiv_sel ? multdiv_valid : ~(|alu_imd_val_we);
198198

199199
`ifdef INC_ASSERT
200-
// This is intended to be accessed via hierarchical references so isn't output from this module nor
201-
// used in any logic in this module
200+
// This is intended to be accessed via hierarchical references so isn't output from this module
201+
// nor used in any logic in this module
202202
logic sva_multdiv_fsm_idle;
203203

204204
if (RV32M == RV32MSlow) begin : gen_multdiv_sva_idle_slow

rtl/ibex_multdiv_fast.sv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,8 +536,8 @@ module ibex_multdiv_fast #(
536536
logic sva_fsm_idle;
537537
logic unused_sva_fsm_idle;
538538

539-
// This is intended to be accessed via hierarchical references so isn't output from this module nor
540-
// used in any logic in this module
539+
// This is intended to be accessed via hierarchical references so isn't output from this module
540+
// nor used in any logic in this module
541541
assign sva_fsm_idle = (md_state_q == MD_IDLE) && sva_mul_fsm_idle;
542542
// Mark the sva_fsm_idle as unused to avoid lint issues
543543
assign unused_sva_fsm_idle = sva_fsm_idle;

0 commit comments

Comments
 (0)