diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-06-06 14:06:43 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:59 -0800 |
commit | 8e5f18dc8d582198c742b3bfa3953b861f761b85 (patch) | |
tree | cc27702a89c612b1bce83beb08919abf7040f36a /host/lib/usrp/mpmd | |
parent | 07b8682239f1d10d49274e1db5a731b5dc9ed53d (diff) | |
download | uhd-8e5f18dc8d582198c742b3bfa3953b861f761b85.tar.gz uhd-8e5f18dc8d582198c742b3bfa3953b861f761b85.tar.bz2 uhd-8e5f18dc8d582198c742b3bfa3953b861f761b85.zip |
mpmd: Fixed prop tree typo (mboard vs mboards)
Diffstat (limited to 'host/lib/usrp/mpmd')
-rw-r--r-- | host/lib/usrp/mpmd/mpmd_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_impl.cpp b/host/lib/usrp/mpmd/mpmd_impl.cpp index 533b5dabf..8ae7d79d7 100644 --- a/host/lib/usrp/mpmd/mpmd_impl.cpp +++ b/host/lib/usrp/mpmd/mpmd_impl.cpp @@ -133,7 +133,7 @@ mpmd_impl::mpmd_impl(const device_addr_t& device_args) } for (size_t mb_i = 0; mb_i < mb_args.size(); ++mb_i) { - init_property_tree(_tree, fs_path("/mboard") / mb_i, _mb[mb_i].get()); + init_property_tree(_tree, fs_path("/mboards") / mb_i, _mb[mb_i].get()); } auto filtered_block_args = device_args; // TODO actually filter |