aboutsummaryrefslogtreecommitdiffstats
path: root/fpga
diff options
context:
space:
mode:
authorAndrew Moch <Andrew.Moch@ni.com>2020-07-29 17:59:25 +0100
committerWade Fife <wade.fife@ettus.com>2020-07-30 15:28:35 -0500
commit3beb450e2ab29e6021f4091fd1a3cc6522f994c4 (patch)
tree13bd7ac142ac88cf2c875957d2d4dff81c86bf10 /fpga
parentffdce1c3fc229579b9d30afe489d2749c0c956ed (diff)
downloaduhd-3beb450e2ab29e6021f4091fd1a3cc6522f994c4.tar.gz
uhd-3beb450e2ab29e6021f4091fd1a3cc6522f994c4.tar.bz2
uhd-3beb450e2ab29e6021f4091fd1a3cc6522f994c4.zip
fpga: lib: Fix chdr_mgmt_pkt_handler when CHDR_W != 64
Diffstat (limited to 'fpga')
-rw-r--r--fpga/usrp3/lib/rfnoc/core/chdr_mgmt_pkt_handler.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga/usrp3/lib/rfnoc/core/chdr_mgmt_pkt_handler.v b/fpga/usrp3/lib/rfnoc/core/chdr_mgmt_pkt_handler.v
index f9c56a6e1..42b851f1a 100644
--- a/fpga/usrp3/lib/rfnoc/core/chdr_mgmt_pkt_handler.v
+++ b/fpga/usrp3/lib/rfnoc/core/chdr_mgmt_pkt_handler.v
@@ -181,7 +181,7 @@ module chdr_mgmt_pkt_handler #(
generate
if (CHDR_W > 64)
- assign m_mgmt_tdata[CHDR_W-1:CHDR_W-64] = 'h0;
+ assign m_mgmt_tdata[CHDR_W-1:64] = 'h0;
endgenerate
// ---------------------------------------------------