diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-10 13:11:22 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-10 13:11:22 -0700 |
commit | e709e4d36516f4459cc08c46ae6eea1e12feb70b (patch) | |
tree | 5bed3ec4bff9246270b79371d5b83fafc3720e12 /host/lib/usrp/dboard/db_xcvr2450.cpp | |
parent | 3724b821f1db99f5eaba3b46d76310549074eaf6 (diff) | |
download | uhd-e709e4d36516f4459cc08c46ae6eea1e12feb70b.tar.gz uhd-e709e4d36516f4459cc08c46ae6eea1e12feb70b.tar.bz2 uhd-e709e4d36516f4459cc08c46ae6eea1e12feb70b.zip |
uhd: added safe call on a few dboard related deconstructors
Diffstat (limited to 'host/lib/usrp/dboard/db_xcvr2450.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_xcvr2450.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_xcvr2450.cpp b/host/lib/usrp/dboard/db_xcvr2450.cpp index c775eae38..fcd05ea04 100644 --- a/host/lib/usrp/dboard/db_xcvr2450.cpp +++ b/host/lib/usrp/dboard/db_xcvr2450.cpp @@ -50,6 +50,7 @@ #include "max2829_regs.hpp" #include <uhd/utils/log.hpp> #include <uhd/utils/static.hpp> +#include <uhd/utils/safe_call.hpp> #include <uhd/utils/assert_has.hpp> #include <uhd/utils/algorithm.hpp> #include <uhd/types/ranges.hpp> @@ -234,7 +235,7 @@ xcvr2450::xcvr2450(ctor_args_t args) : xcvr_dboard_base(args){ } xcvr2450::~xcvr2450(void){ - spi_reset(); + UHD_SAFE_CALL(spi_reset();) } void xcvr2450::spi_reset(void){ |