diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-21 16:20:43 -0700 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-07-15 10:12:33 -0700 |
commit | cd755b0a51bb136ce4f17a83157c4d8fe5ffa972 (patch) | |
tree | ffd0d47ce04a5f4bdec97a012443ab40872687ab /host/lib/usrp/device3/device3_io_impl.cpp | |
parent | db9285586213f0100dd9f0caf6e69e872d9a6718 (diff) | |
download | uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.tar.gz uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.tar.bz2 uhd-cd755b0a51bb136ce4f17a83157c4d8fe5ffa972.zip |
device3: Remove unused 'rate' argument from update_?x_streamers()
Diffstat (limited to 'host/lib/usrp/device3/device3_io_impl.cpp')
-rw-r--r-- | host/lib/usrp/device3/device3_io_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/device3/device3_io_impl.cpp b/host/lib/usrp/device3/device3_io_impl.cpp index 188deb89c..06415dd91 100644 --- a/host/lib/usrp/device3/device3_io_impl.cpp +++ b/host/lib/usrp/device3/device3_io_impl.cpp @@ -256,7 +256,7 @@ bool device3_impl::recv_async_msg(async_metadata_t& async_metadata, double timeo /*********************************************************************** * Receive streamer **********************************************************************/ -void device3_impl::update_rx_streamers(double /* rate */) +void device3_impl::update_rx_streamers() { for (const std::string& block_id : _rx_streamers.keys()) { UHD_RX_STREAMER_LOG() << "updating RX streamer to " << block_id; @@ -523,7 +523,7 @@ rx_streamer::sptr device3_impl::get_rx_stream(const stream_args_t& args_) /*********************************************************************** * Transmit streamer **********************************************************************/ -void device3_impl::update_tx_streamers(double /* rate */) +void device3_impl::update_tx_streamers() { for (const std::string& block_id : _tx_streamers.keys()) { UHD_TX_STREAMER_LOG() << "updating TX streamer: " << block_id; |