diff options
author | Trung Tran <trung.tran@ettus.com> | 2018-08-21 15:24:20 -0700 |
---|---|---|
committer | Brent Stapleton <bstapleton@g.hmc.edu> | 2018-09-13 14:47:54 -0700 |
commit | 27abe82f0de6ae81aadf8a8c6a8206d9ca38bfc5 (patch) | |
tree | 2475eb61afb385903e0d7b0bc95c99cc586e572b /host/lib | |
parent | a8d6e1616d44f223718357c0aace82b246ca2619 (diff) | |
download | uhd-27abe82f0de6ae81aadf8a8c6a8206d9ca38bfc5.tar.gz uhd-27abe82f0de6ae81aadf8a8c6a8206d9ca38bfc5.tar.bz2 uhd-27abe82f0de6ae81aadf8a8c6a8206d9ca38bfc5.zip |
device3_io_impl: remove tx_hint[send_buff_size]
we're no longer need this. Because there are default send buff size in
each transport type impl.
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/device3/device3_io_impl.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/host/lib/usrp/device3/device3_io_impl.cpp b/host/lib/usrp/device3/device3_io_impl.cpp index 490f10c3c..d5b0d4f1d 100644 --- a/host/lib/usrp/device3/device3_io_impl.cpp +++ b/host/lib/usrp/device3/device3_io_impl.cpp @@ -880,12 +880,6 @@ tx_streamer::sptr device3_impl::get_tx_stream(const uhd::stream_args_t &args_) // Setup the dsp transport hints device_addr_t tx_hints = get_tx_hints(mb_index); const size_t fifo_size = blk_ctrl->get_fifo_size(block_port); - if (not tx_hints.has_key("send_buff_size")) - { - // Default buffer size to FIFO size - tx_hints["send_buff_size"] = std::to_string(fifo_size); - } - // Allocate sid and create transport uhd::sid_t stream_address = blk_ctrl->get_address(block_port); UHD_TX_STREAMER_LOG() << "creating tx stream " << tx_hints.to_string() ; |