diff options
author | Andrew Moch <Andrew.Moch@ni.com> | 2020-03-19 19:55:53 +0100 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2020-03-23 08:23:51 -0500 |
commit | 5c7237fb407cfccaee205980d97e40ce10768c2a (patch) | |
tree | dbdba3dcefff2d3cdeab27fa371c203b3398aa81 /fpga/usrp3/lib/sim/axi | |
parent | b721621237c0cd4150e9310cf443d4fb3a735388 (diff) | |
download | uhd-5c7237fb407cfccaee205980d97e40ce10768c2a.tar.gz uhd-5c7237fb407cfccaee205980d97e40ce10768c2a.tar.bz2 uhd-5c7237fb407cfccaee205980d97e40ce10768c2a.zip |
fpga: Fix errors found by linting with vsim
Diffstat (limited to 'fpga/usrp3/lib/sim/axi')
-rw-r--r-- | fpga/usrp3/lib/sim/axi/axis_width_conv/axis_width_conv_tb.sv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga/usrp3/lib/sim/axi/axis_width_conv/axis_width_conv_tb.sv b/fpga/usrp3/lib/sim/axi/axis_width_conv/axis_width_conv_tb.sv index 0b1f4414c..7b1310e9c 100644 --- a/fpga/usrp3/lib/sim/axi/axis_width_conv/axis_width_conv_tb.sv +++ b/fpga/usrp3/lib/sim/axi/axis_width_conv/axis_width_conv_tb.sv @@ -172,7 +172,7 @@ module axis_width_conv_tb(); // - words: The size of the packet in words // - inst: The instance number of the module to send to // - gaps: If 1 then insert bubble cycles randomly in the stream - task push_test_pkt(input integer words, input integer inst, input logic gaps); + task automatic push_test_pkt(input integer words, input integer inst, input logic gaps); begin logic [(MAX_IN_WORDS*WORD_W)-1:0] data = 0; logic [MAX_IN_WORDS-1:0] keep = 0; @@ -217,7 +217,7 @@ module axis_width_conv_tb(); // - inst: The instance number of the module to send to // - gaps: If 1 then insert bubble cycles randomly in the stream // - ok: If 1 then all sanity checks have passed - task pull_test_pkt(input integer words, input integer inst, input logic gaps, output logic ok); + task automatic pull_test_pkt(input integer words, input integer inst, input logic gaps, output logic ok); begin logic [(MAX_OUT_WORDS*WORD_W)-1:0] pull_data = 0; logic [MAX_OUT_WORDS-1:0] pull_keep = 0; |