Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[aes,dv] Fix aes_ctrl_cg sample function declaration #20940

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hw/ip/aes/dv/cov/aes_cov_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface aes_cov_if


covergroup aes_ctrl_cg with function sample(
bit aes_op,
bit [aes_pkg::AES_OP_WIDTH-1:0] aes_op,
bit [aes_pkg::AES_MODE_WIDTH-1:0] aes_mode,
bit [aes_pkg::AES_KEYLEN_WIDTH-1:0] aes_keylen,
bit aes_man_op,
Expand Down Expand Up @@ -307,7 +307,7 @@ interface aes_cov_if
endfunction

function automatic void cg_ctrl_sample(
bit aes_op,
bit [aes_pkg::AES_OP_WIDTH-1:0] aes_op,
bit [aes_pkg::AES_MODE_WIDTH-1:0] aes_mode,
bit [aes_pkg::AES_KEYLEN_WIDTH-1:0] aes_keylen,
bit aes_man_op,
Expand Down
Loading