Skip to content

Commit 7d8ace2

Browse files
committed
[dv] Remove default value for wait_to_issue_reset argument
Every callsite for this task passes a value for the argument. Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
1 parent 2a42ee8 commit 7d8ace2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hw/dv/sv/cip_lib/seq_lib/cip_base_vseq.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ class cip_base_vseq #(
787787
// accesses can also be set by derived classes for special cases. If the wait doesn't clear
788788
// something is probably wrong: perhaps some loop sending CSR transactions is missing a
789789
// break if stop_transaction_generators() is set.
790-
virtual task wait_to_issue_reset(uint reset_delay_bound = 10_000_000);
790+
virtual task wait_to_issue_reset(uint reset_delay_bound);
791791
int cycles_with_no_accesses = 0;
792792
int cycles_waited;
793793

hw/ip/hmac/dv/env/seq_lib/hmac_common_vseq.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class hmac_common_vseq extends hmac_base_vseq;
2828
run_common_vseq_wrapper(num_trans);
2929
endtask : body
3030

31-
virtual task wait_to_issue_reset(uint reset_delay_bound = 10_000_000);
31+
virtual task wait_to_issue_reset(uint reset_delay_bound);
3232
`DV_CHECK_MEMBER_RANDOMIZE_FATAL(trig_rst_during_hash)
3333

3434
if (trig_rst_during_hash) begin

0 commit comments

Comments
 (0)