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/x300 | |
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/x300')
-rw-r--r-- | host/lib/usrp/x300/x300_impl.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/host/lib/usrp/x300/x300_impl.cpp b/host/lib/usrp/x300/x300_impl.cpp index ac5b66442..76759acb3 100644 --- a/host/lib/usrp/x300/x300_impl.cpp +++ b/host/lib/usrp/x300/x300_impl.cpp @@ -1162,10 +1162,8 @@ void x300_impl::setup_mb(const size_t mb_i, const uhd::device_addr_t& dev_addr) } return master_clock_rate; }) - .add_coerced_subscriber( - [this](const double rate) { this->update_tx_streamers(rate); }) - .add_coerced_subscriber( - [this](const double rate) { this->update_rx_streamers(rate); }) + .add_coerced_subscriber([this](const double) { this->update_tx_streamers(); }) + .add_coerced_subscriber([this](const double) { this->update_rx_streamers(); }) .set(master_clock_rate); //////////////////////////////////////////////////////////////////// |