aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/lib/rfnoc/core
diff options
context:
space:
mode:
authorWade Fife <wade.fife@ettus.com>2020-08-24 21:29:28 -0500
committerWade Fife <wade.fife@ettus.com>2020-08-28 15:02:41 -0500
commit00f683c91486647f1711eb4c0b0a917078d29652 (patch)
treee8a67a76d93acedf531a8268aa480941b63e290a /fpga/usrp3/lib/rfnoc/core
parentc68977cffadf47d072e1c90903d5aee9a39541f9 (diff)
downloaduhd-00f683c91486647f1711eb4c0b0a917078d29652.tar.gz
uhd-00f683c91486647f1711eb4c0b0a917078d29652.tar.bz2
uhd-00f683c91486647f1711eb4c0b0a917078d29652.zip
fpga: lib: Fix lint warnings
Fixes various synthesis/simulation warnings that were being generated due to incorrectly sized constants.
Diffstat (limited to 'fpga/usrp3/lib/rfnoc/core')
-rw-r--r--fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v b/fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v
index 9c824a0af..b6d47367a 100644
--- a/fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v
+++ b/fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v
@@ -197,7 +197,7 @@ module chdr_stream_endpoint #(
.node_info(chdr_mgmt_build_node_info(EXTENDED_INFO, INST_NUM, NODE_TYPE_STREAM_EP, device_id)),
.s_axis_chdr_tdata(mgmt_i_tdata), .s_axis_chdr_tlast(mgmt_i_tlast),
.s_axis_chdr_tvalid(mgmt_i_tvalid), .s_axis_chdr_tready(mgmt_i_tready),
- .s_axis_chdr_tuser('d0),
+ .s_axis_chdr_tuser(1'd0),
.m_axis_chdr_tdata(mgmt_o_tdata), .m_axis_chdr_tlast(mgmt_o_tlast),
.m_axis_chdr_tdest(/* unused */), .m_axis_chdr_tid(/* unused */),
.m_axis_chdr_tvalid(mgmt_o_tvalid), .m_axis_chdr_tready(mgmt_o_tready),