diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-06-22 12:46:03 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-22 15:07:02 -0500 |
commit | 9817c55602103843697e2fbdd8c42d31c4651621 (patch) | |
tree | a08bb7ee6447ed299d0465643304a0c92142201c /host | |
parent | 52dbd06387c50d21ddb0c36921b64c7d26f9b886 (diff) | |
download | uhd-9817c55602103843697e2fbdd8c42d31c4651621.tar.gz uhd-9817c55602103843697e2fbdd8c42d31c4651621.tar.bz2 uhd-9817c55602103843697e2fbdd8c42d31c4651621.zip |
lmx2572: Fix compiler warning
Unused private field _mux_state.
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/common/lmx2572.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/host/lib/usrp/common/lmx2572.cpp b/host/lib/usrp/common/lmx2572.cpp index c56478b1d..8161c36ec 100644 --- a/host/lib/usrp/common/lmx2572.cpp +++ b/host/lib/usrp/common/lmx2572.cpp @@ -379,9 +379,8 @@ private: write_fn_t _poke16; read_fn_t _peek16; sleep_fn_t _sleep; - lmx2572_regs_t _regs = lmx2572_regs_t(); - muxout_state_t _mux_state = muxout_state_t::SDO; - bool _sync_mode = false; + lmx2572_regs_t _regs = lmx2572_regs_t(); + bool _sync_mode = false; /************************************************************************** * Private Methods |