summaryrefslogtreecommitdiffstats
path: root/usrp2/gpmc/new_read.v
diff options
context:
space:
mode:
Diffstat (limited to 'usrp2/gpmc/new_read.v')
-rw-r--r--usrp2/gpmc/new_read.v4
1 files changed, 1 insertions, 3 deletions
diff --git a/usrp2/gpmc/new_read.v b/usrp2/gpmc/new_read.v
index 18615b46a..21ca09c75 100644
--- a/usrp2/gpmc/new_read.v
+++ b/usrp2/gpmc/new_read.v
@@ -30,14 +30,12 @@ module new_read
.datain(data_i), .src_rdy_i(src_rdy_i), .dst_rdy_o(dst_rdy_o), .space(rx_fifo_space),
.dataout(data_int), .src_rdy_o(src_rdy_int), .dst_rdy_i(dst_rdy_int), .occupied());
- /*
fifo_watcher fifo_watcher
(.clk(clk), .reset(reset), .clear(clear),
- .src_rdy1(src_rdy_i & ~throttle), .dst_rdy1(dst_rdy_i), .sof1(data_i[16]), .eof1(data_i[17]),
+ .src_rdy1(src_rdy_i), .dst_rdy1(dst_rdy_i), .sof1(data_i[16]), .eof1(data_i[17]),
.src_rdy2(src_rdy_int), .dst_rdy2(dst_rdy_int), .sof2(data_int[16]), .eof2(data_int[17]),
.have_packet(have_packet), .length(frame_len), .bus_error(bus_error),
.debug());
- */
// Synchronize the async control signals
reg [1:0] cs_del, oe_del;