Skip to content

Commit

Permalink
[#70330] Fix warnings runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
JanOlencki authored and mgielda committed Dec 20, 2024
1 parent 8196a7d commit 22c712a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 0 additions & 7 deletions src/hci/queues/read_queue.sv
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,6 @@ module read_queue #(

logic [FifoDepthWidth-1:0] empty_entries;

initial begin
if (ThldIsPow == LimitReadyThld) begin
$warning("Configuration with both `ThldIsPow` and `LimitReadyThld` enabled or disabled",
"is not tested and might result in unexpected behavior.");
end
end

assign rst = ~rst_ni | reg_rst_i;

assign fifo_clr = reg_rst_i;
Expand Down
1 change: 1 addition & 0 deletions src/recovery/recovery_executor.sv
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ module recovery_executor
'd1: res_data_o = csr_data[15:8];
'd2: res_data_o = csr_data[23:16];
'd3: res_data_o = csr_data[31:24];
default: res_data_o = '0;
endcase

// Transmitt data last
Expand Down

0 comments on commit 22c712a

Please sign in to comment.