diff options
author | Josh Blum <josh@joshknows.com> | 2012-03-26 17:54:04 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-03-26 17:54:04 -0700 |
commit | 40884c9411bf7d4bc91d24c939c22a3a04193d82 (patch) | |
tree | 4c70d298d4e09558c73e0faee22b56ab7075800d /fpga/usrp2/gpif/packet_reframer.v | |
parent | ef3deabe79407a7ebb117c6731ef687d6c770121 (diff) | |
parent | 74a9352c5f50afca06924180bbbdd75cdfb8b439 (diff) | |
download | uhd-40884c9411bf7d4bc91d24c939c22a3a04193d82.tar.gz uhd-40884c9411bf7d4bc91d24c939c22a3a04193d82.tar.bz2 uhd-40884c9411bf7d4bc91d24c939c22a3a04193d82.zip |
Merge branch 'master' into next
Diffstat (limited to 'fpga/usrp2/gpif/packet_reframer.v')
-rw-r--r-- | fpga/usrp2/gpif/packet_reframer.v | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fpga/usrp2/gpif/packet_reframer.v b/fpga/usrp2/gpif/packet_reframer.v index 8bb8a3678..e0ce9e174 100644 --- a/fpga/usrp2/gpif/packet_reframer.v +++ b/fpga/usrp2/gpif/packet_reframer.v @@ -20,7 +20,7 @@ module packet_reframer (input clk, input reset, input clear, - input [18:0] data_i, + input [15:0] data_i, input src_rdy_i, output dst_rdy_o, output [18:0] data_o, @@ -60,8 +60,7 @@ module packet_reframer wire occ_out = 0; assign eof_out = (state == RF_PKT) & (length == 2); wire sof_out = (state == RF_IDLE); - wire [15:0] data_out = data_i[15:0]; - assign data_o = {occ_out, eof_out, sof_out, data_out}; + assign data_o = {occ_out, eof_out, sof_out, data_i[15:0]}; endmodule // packet_reframer |