diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-06-27 17:21:44 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-06-27 17:32:12 -0700 |
commit | 521f6c40c600f180acef82327aef5a483abb1ae1 (patch) | |
tree | b0a4e33d54c801bec33b5fafdb6ec11844bb8c8f /host/lib | |
parent | adfbd70dba7aafde9cb7b29756c00c2cf8044c64 (diff) | |
download | uhd-521f6c40c600f180acef82327aef5a483abb1ae1.tar.gz uhd-521f6c40c600f180acef82327aef5a483abb1ae1.tar.bz2 uhd-521f6c40c600f180acef82327aef5a483abb1ae1.zip |
rfnoc: Fixed radio compiler warnings
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/rfnoc/radio_ctrl_impl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/rfnoc/radio_ctrl_impl.cpp b/host/lib/rfnoc/radio_ctrl_impl.cpp index 69c9fb68c..85ad6ed92 100644 --- a/host/lib/rfnoc/radio_ctrl_impl.cpp +++ b/host/lib/rfnoc/radio_ctrl_impl.cpp @@ -457,15 +457,15 @@ std::vector<std::string> radio_ctrl_impl::get_gpio_banks() const } void radio_ctrl_impl::set_gpio_attr( - const std::string &bank, - const std::string &attr, - const uint32_t value, - const uint32_t mask + const std::string &, + const std::string &, + const uint32_t, + const uint32_t ) { throw uhd::not_implemented_error("set_gpio_attr was not defined for this radio"); } -uint32_t radio_ctrl_impl::get_gpio_attr(const std::string &bank, const std::string &attr) +uint32_t radio_ctrl_impl::get_gpio_attr(const std::string &, const std::string &) { throw uhd::not_implemented_error("get_gpio_attr was not defined for this radio"); } |