diff options
author | Matt Ettus <matt@ettus.com> | 2010-10-07 11:10:00 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-11 12:10:35 -0800 |
commit | 8507271de44aadc564354a77c8b9259e24f0d246 (patch) | |
tree | 118379cea877b599eecd094cc70ba9db469635d8 /usrp2/vrt | |
parent | 2261035e69c033b37d9fe784ef8d1150f39f0e47 (diff) | |
download | uhd-8507271de44aadc564354a77c8b9259e24f0d246.tar.gz uhd-8507271de44aadc564354a77c8b9259e24f0d246.tar.bz2 uhd-8507271de44aadc564354a77c8b9259e24f0d246.zip |
revert unneeded changes and incorrect comments
Diffstat (limited to 'usrp2/vrt')
-rw-r--r-- | usrp2/vrt/vita_tx_deframer.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/vrt/vita_tx_deframer.v b/usrp2/vrt/vita_tx_deframer.v index b62507092..f9cd7d00d 100644 --- a/usrp2/vrt/vita_tx_deframer.v +++ b/usrp2/vrt/vita_tx_deframer.v @@ -84,7 +84,7 @@ module vita_tx_deframer seqnum_err <= 0; end else - if((vita_state == VITA_STORE) & fifo_space ) //& src_rdy_i) + if((vita_state == VITA_STORE) & fifo_space) if(eop) if(has_trailer_reg) vita_state <= VITA_TRAILER; @@ -183,7 +183,7 @@ module vita_tx_deframer 3: sample_d <= data_i[31:0]; endcase // case (vector_phase) - wire store = (vita_state == VITA_STORE) ; //& src_rdy_i; + wire store = (vita_state == VITA_STORE); fifo_short #(.WIDTH(FIFOWIDTH)) short_tx_q (.clk(clk), .reset(reset), .clear(clear), .datain(fifo_i), .src_rdy_i(store), .dst_rdy_o(fifo_space), |