Skip to content

Commit

Permalink
axi_ad9361: Fix typo in tdd interface
Browse files Browse the repository at this point in the history
As alluded to in the subject, this commit simply fixes what appears
to be a copy-paste bug.

Signed-off-by: David Winter <[email protected]>
  • Loading branch information
Yamakaja authored and ronagyl committed Jun 14, 2021
1 parent bf77271 commit f201705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/axi_ad9361/axi_ad9361_tdd.v
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ module axi_ad9361_tdd (
end

always @(posedge clk) begin
if((tdd_enable_s == 1) && (tdd_gated_tx_dmapath_s == 1)) begin
if((tdd_enable_s == 1) && (tdd_gated_rx_dmapath_s == 1)) begin
tdd_rx_valid <= tdd_rx_dp_en_s;
end else begin
tdd_rx_valid <= 1'b1;
Expand Down

0 comments on commit f201705

Please sign in to comment.