Skip to content

Commit

Permalink
axi_lite_to_axi: 🎨 Align port names
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskurth committed Apr 21, 2020
1 parent 842e9d5 commit 9253e5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/axi_lite_to_axi.sv
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ module axi_lite_to_axi #(
parameter type resp_t = logic
) (
// Slave AXI LITE port
input req_lite_t slv_req_lite_i,
output resp_lite_t slv_resp_lite_o,
input req_lite_t slv_req_lite_i,
output resp_lite_t slv_resp_lite_o,
input axi_pkg::cache_t slv_aw_cache_i,
input axi_pkg::cache_t slv_ar_cache_i,
// Master AXI port
output req_t mst_req_o,
input resp_t mst_resp_i
output req_t mst_req_o,
input resp_t mst_resp_i
);
localparam int unsigned AxiSize = axi_pkg::size_t'($unsigned($clog2(AxiDataWidth/8)));

Expand Down

0 comments on commit 9253e5c

Please sign in to comment.