Skip to content

Commit

Permalink
axi_demux: Remove docstring flag from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Rönninger authored and thommythomaso committed Oct 6, 2022
1 parent a5dce21 commit f689d32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/axi_demux.sv
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ module axi_demux #(
if (!aw_id_cnt_full && (w_open != {IdCounterWidth{1'b1}}) &&
(!(ar_id_cnt_full && slv_aw_chan.atop[axi_pkg::ATOP_R_RESP]) ||
!AtopSupport)) begin
/// There is a valid AW vector make the id lookup and go further, if it passes.
/// Also stall if previous transmitted AWs still have active W's in flight.
/// This prevents deadlocking of the W channel. The counters are there for the
/// Handling of the B responses.
// There is a valid AW vector make the id lookup and go further, if it passes.
// Also stall if previous transmitted AWs still have active W's in flight.
// This prevents deadlocking of the W channel. The counters are there for the
// Handling of the B responses.
if (slv_aw_valid &&
((w_open == '0) || (w_select == slv_aw_select)) &&
(!aw_select_occupied || (slv_aw_select == lookup_aw_select))) begin
Expand Down

0 comments on commit f689d32

Please sign in to comment.