From 11401e2564bd50bdd76c84d9baedbb797ecf3f61 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 2 Jun 2017 14:59:47 -0700 Subject: rpc: Changed API to request/notify for better distinction between the two --- host/lib/usrp/mpmd/mpmd_impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'host/lib/usrp/mpmd/mpmd_impl.cpp') diff --git a/host/lib/usrp/mpmd/mpmd_impl.cpp b/host/lib/usrp/mpmd/mpmd_impl.cpp index efc89f86e..f1c5efc14 100644 --- a/host/lib/usrp/mpmd/mpmd_impl.cpp +++ b/host/lib/usrp/mpmd/mpmd_impl.cpp @@ -140,16 +140,16 @@ void mpmd_impl::setup_rfnoc_blocks( const uhd::device_addr_t& ctrl_xport_args ) { auto &mb = _mb[mb_index]; - mb->num_xbars = mb->rpc->call("get_num_xbars"); + mb->num_xbars = mb->rpc->request("get_num_xbars"); UHD_LOG_TRACE("MPM", "Mboard " << mb_index << " reports " << mb->num_xbars << " crossbar(s)." ); for (size_t xbar_index = 0; xbar_index < mb->num_xbars; xbar_index++) { const size_t num_blocks = - mb->rpc->call("get_num_blocks", xbar_index); + mb->rpc->request("get_num_blocks", xbar_index); const size_t base_port = - mb->rpc->call("get_base_port", xbar_index); + mb->rpc->request("get_base_port", xbar_index); const size_t local_addr = mb->get_xbar_local_addr(xbar_index); UHD_LOGGER_TRACE("MPMD") << "Enumerating RFNoC blocks for xbar " << xbar_index -- cgit v1.2.3