diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-08-13 15:24:02 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-08-13 15:24:02 -0700 |
commit | 141eb0fb52401e6a0a362123d8c4e01d7a091d60 (patch) | |
tree | 4d705dd03f7544f659381b1ce56eb3af8baf6988 /host/include | |
parent | 960330206e193c1712978dfc601a8fdb5e3ea7e1 (diff) | |
download | uhd-141eb0fb52401e6a0a362123d8c4e01d7a091d60.tar.gz uhd-141eb0fb52401e6a0a362123d8c4e01d7a091d60.tar.bz2 uhd-141eb0fb52401e6a0a362123d8c4e01d7a091d60.zip |
uhd: rfnoc: docs: Fix Doxygen warning due to undoc'd parameter
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/rfnoc/graph.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/graph.hpp b/host/include/uhd/rfnoc/graph.hpp index d2038bbe5..bdd104620 100644 --- a/host/include/uhd/rfnoc/graph.hpp +++ b/host/include/uhd/rfnoc/graph.hpp @@ -48,12 +48,13 @@ public: * \param src_block_port Source block port * \param dst_sid SID to route traffic to * \param buf_size_dst_bytes Destination window buffer in bytes + * \param pkt_size Hint what the packet size over this link will be */ virtual void connect_src(const block_id_t& src_block, const size_t src_block_port, const uhd::sid_t dst_sid, const size_t buf_size_dst_bytes, - const size_t pkt_size_) = 0; + const size_t pkt_size) = 0; /*! Anonymous connection * |