diff options
author | Josh Blum <josh@joshknows.com> | 2011-11-04 23:23:47 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-04 23:23:47 +0000 |
commit | 9c598203327943b6ec042b031849ec6d7d907479 (patch) | |
tree | 47cc69e02ae6bf474a7cc0b6f472630678a2e6dc /host/lib/usrp/e100/e100_impl.cpp | |
parent | 0e7c8c388a5dcbd70631526b42e08178300b93c4 (diff) | |
download | uhd-9c598203327943b6ec042b031849ec6d7d907479.tar.gz uhd-9c598203327943b6ec042b031849ec6d7d907479.tar.bz2 uhd-9c598203327943b6ec042b031849ec6d7d907479.zip |
e100/b100: init tree before filling it
git log
Diffstat (limited to 'host/lib/usrp/e100/e100_impl.cpp')
-rw-r--r-- | host/lib/usrp/e100/e100_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/e100/e100_impl.cpp b/host/lib/usrp/e100/e100_impl.cpp index 8fe9081b1..2e3a635a6 100644 --- a/host/lib/usrp/e100/e100_impl.cpp +++ b/host/lib/usrp/e100/e100_impl.cpp @@ -106,6 +106,7 @@ UHD_STATIC_BLOCK(register_e100_device){ * Structors **********************************************************************/ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){ + _tree = property_tree::make(); //setup the main interface into fpga const std::string node = device_addr["node"]; @@ -179,7 +180,6 @@ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){ //////////////////////////////////////////////////////////////////// // Initialize the properties tree //////////////////////////////////////////////////////////////////// - _tree = property_tree::make(); _tree->create<std::string>("/name").set("E-Series Device"); const fs_path mb_path = "/mboards/0"; _tree->create<std::string>(mb_path / "name").set(str(boost::format("%s (euewanee)") % model)); |