Skip to content

Commit

Permalink
wrapper: fix i3c_sda_pp_io declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
kgugala committed Jan 18, 2025
1 parent d118c6e commit 9f4b079
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/i3c_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ module i3c_wrapper #(
`else
logic scl_drive_low, sda_drive_low;
logic sda_od, scl_od;
wire i3c_scl_pp_io, i3c_scl_pp_io;
wire i3c_scl_pp_io, i3c_sda_pp_io;
assign scl_drive_low = ~scl_phy2io;
assign sda_drive_low = ~sda_phy2io;

Expand All @@ -275,7 +275,6 @@ module i3c_wrapper #(
.sda_i(sda_phy2io),
.scl_o(scl_io2phy),
.sda_o(sda_io2phy),
.sel_od_pp_i(sel_od_pp),
.scl_io(i3c_scl_pp_io),
.sda_io(i3c_sda_pp_io)
);
Expand Down

0 comments on commit 9f4b079

Please sign in to comment.