Skip to content

Commit

Permalink
[rom_ctrl,dv] Correct argument to dut_init in rom_ctrl_base_vseq
Browse files Browse the repository at this point in the history
Practically speaking, this doesn't really matter (because it only ever
gets called with the default value), but it seems worth tidying up.

Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
  • Loading branch information
rswarbrick committed Dec 13, 2024
1 parent d3df3ce commit 980170d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/ip/rom_ctrl/dv/env/seq_lib/rom_ctrl_base_vseq.sv
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class rom_ctrl_base_vseq extends cip_base_vseq #(
`uvm_object_new

virtual task dut_init(string reset_kind = "HARD");
super.dut_init();
super.dut_init(reset_kind);
// Disable intr test since no interrupts
do_clear_all_interrupts = 1'b0;
endtask
Expand Down

0 comments on commit 980170d

Please sign in to comment.