Skip to content

Commit

Permalink
hw(nw_chimney): Fix duplicate drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Dec 12, 2024
1 parent aa87bc3 commit 5ccc6b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hw/floo_axi_chimney.sv
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ module floo_axi_chimney #(
.slv_req_i ( meta_buf_req_in ),
.slv_resp_o ( meta_buf_rsp_out )
);

assign meta_buf_req_out = '0;
assign ar_out_hdr_out = '0;
assign aw_out_hdr_out = '0;
end
Expand Down
4 changes: 2 additions & 2 deletions hw/floo_nw_chimney.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ module floo_nw_chimney #(
.slv_req_i ( axi_narrow_meta_buf_req_in ),
.slv_resp_o ( axi_narrow_meta_buf_rsp_out )
);
assign axi_narrow_out_req_o = '0;
assign axi_narrow_meta_buf_req_out = '0;
assign narrow_ar_buf_hdr_out = '0;
assign narrow_aw_buf_hdr_out = '0;
end
Expand Down Expand Up @@ -1227,7 +1227,7 @@ module floo_nw_chimney #(
.slv_req_i ( axi_wide_meta_buf_req_in ),
.slv_resp_o ( axi_wide_meta_buf_rsp_out )
);
assign axi_wide_out_req_o = '0;
assign axi_wide_meta_buf_req_out = '0;
assign wide_ar_buf_hdr_out = '0;
assign wide_aw_buf_hdr_out = '0;
end
Expand Down

0 comments on commit 5ccc6b7

Please sign in to comment.