aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp')
-rw-r--r--host/lib/usrp/multi_usrp.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/host/lib/usrp/multi_usrp.cpp b/host/lib/usrp/multi_usrp.cpp
index b9a60a794..03a2a169c 100644
--- a/host/lib/usrp/multi_usrp.cpp
+++ b/host/lib/usrp/multi_usrp.cpp
@@ -1961,8 +1961,7 @@ public:
throw uhd::runtime_error("Attempting to get non-existing filter: " + name);
}
- return _tree->access<filter_info_base::sptr>(tx_rf_fe_root(chan) / name / "value")
- .get();
+ return _tree->access<filter_info_base::sptr>(fs_path(name) / "value").get();
}
void set_tx_filter(
@@ -1975,8 +1974,7 @@ public:
throw uhd::runtime_error("Attempting to set non-existing filter: " + name);
}
- _tree->access<filter_info_base::sptr>(tx_rf_fe_root(chan) / name / "value")
- .set(filter);
+ _tree->access<filter_info_base::sptr>(fs_path(name) / "value").set(filter);
}
/*******************************************************************