Skip to content

Commit

Permalink
target/xilinx: Fix typo in type parameter (#123)
Browse files Browse the repository at this point in the history
Fix a typo in the `reg_rsp_t` parameter. This is not very critical as
it isn't used, but perhaps it can prevent future headache.

Signed-off-by: Nils Wistoff <[email protected]>
  • Loading branch information
niwis authored Apr 25, 2024
1 parent b0e8ec3 commit 0deceee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target/xilinx/src/cheshire_top_xilinx.sv
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ module cheshire_top_xilinx (
.axi_ext_slv_req_t ( axi_slv_req_t ),
.axi_ext_slv_rsp_t ( axi_slv_rsp_t ),
.reg_ext_req_t ( reg_req_t ),
.reg_ext_rsp_t ( reg_req_t )
.reg_ext_rsp_t ( reg_rsp_t )
) i_cheshire_soc (
.clk_i ( soc_clk ),
.rst_ni ( rst_n ),
Expand Down

0 comments on commit 0deceee

Please sign in to comment.