diff options
author | michael-west <michael.west@ettus.com> | 2015-02-13 17:49:48 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-02-16 11:09:55 +0100 |
commit | 956bf82d2800c346afe057e8c1ecf230900ee356 (patch) | |
tree | 135426e83f304e65e6043950e55e867bdcd0a2f3 /host/lib/usrp/dboard/db_ubx.cpp | |
parent | 06bdef36dd5cfafe0d4c72a1d12488cd5599fca1 (diff) | |
download | uhd-956bf82d2800c346afe057e8c1ecf230900ee356.tar.gz uhd-956bf82d2800c346afe057e8c1ecf230900ee356.tar.bz2 uhd-956bf82d2800c346afe057e8c1ecf230900ee356.zip |
UBX: Revert LO shutdown method in ubx_xcvr destructor
Diffstat (limited to 'host/lib/usrp/dboard/db_ubx.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_ubx.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/usrp/dboard/db_ubx.cpp b/host/lib/usrp/dboard/db_ubx.cpp index 45817f599..b6cc1421c 100644 --- a/host/lib/usrp/dboard/db_ubx.cpp +++ b/host/lib/usrp/dboard/db_ubx.cpp @@ -906,10 +906,10 @@ public: ~ubx_xcvr(void) { // Shutdown synthesizers - _txlo1.reset(); - _txlo2.reset(); - _rxlo1.reset(); - _rxlo2.reset(); + _txlo1->shutdown(); + _txlo2->shutdown(); + _rxlo1->shutdown(); + _rxlo2->shutdown(); // Reset CPLD values _cpld_reg.value = 0; |