aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/mpmd/mpmd_prop_tree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/mpmd/mpmd_prop_tree.cpp')
-rw-r--r--host/lib/usrp/mpmd/mpmd_prop_tree.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_prop_tree.cpp b/host/lib/usrp/mpmd/mpmd_prop_tree.cpp
index 51b88b0e6..dc559f91b 100644
--- a/host/lib/usrp/mpmd/mpmd_prop_tree.cpp
+++ b/host/lib/usrp/mpmd/mpmd_prop_tree.cpp
@@ -194,16 +194,4 @@ void mpmd_impl::init_property_tree(
return _get_component_info(comp_name, mb);
}); // Done adding component to property tree
}
-
- /*** MTUs ***********************************************************/
- tree->create<size_t>(mb_path / "mtu/recv")
- .add_coerced_subscriber([](const size_t) {
- throw uhd::runtime_error("Attempting to write read-only value (MTU)!");
- })
- .set_publisher([mb]() { return mb->get_mtu(uhd::RX_DIRECTION); });
- tree->create<size_t>(mb_path / "mtu/send")
- .add_coerced_subscriber([](const size_t) {
- throw uhd::runtime_error("Attempting to write read-only value (MTU)!");
- })
- .set_publisher([mb]() { return mb->get_mtu(uhd::TX_DIRECTION); });
}