From 00f683c91486647f1711eb4c0b0a917078d29652 Mon Sep 17 00:00:00 2001 From: Wade Fife Date: Mon, 24 Aug 2020 21:29:28 -0500 Subject: fpga: lib: Fix lint warnings Fixes various synthesis/simulation warnings that were being generated due to incorrectly sized constants. --- fpga/usrp3/lib/rfnoc/core/chdr_stream_endpoint.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fpga/usrp3/lib/rfnoc/core') 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), -- cgit v1.2.3