aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/mgmt_portal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/rfnoc/mgmt_portal.cpp')
-rw-r--r--host/lib/rfnoc/mgmt_portal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/rfnoc/mgmt_portal.cpp b/host/lib/rfnoc/mgmt_portal.cpp
index 0e0997a36..1c6e2c608 100644
--- a/host/lib/rfnoc/mgmt_portal.cpp
+++ b/host/lib/rfnoc/mgmt_portal.cpp
@@ -1050,15 +1050,15 @@ private: // Functions
// Send the transaction over the wire
_send_mgmt_transaction(xport, send);
- auto recv_buff = xport.get_mgmt_buff(timeout * 1000);
- if (not recv_buff) {
+ auto mgmt_buff = xport.get_mgmt_buff(timeout * 1000);
+ if (not mgmt_buff) {
throw uhd::io_error("Timed out getting recv buff for management transaction");
}
- _recv_pkt->refresh(recv_buff->data());
+ _recv_pkt->refresh(mgmt_buff->data());
mgmt_payload recv;
recv.set_header(my_epid, _protover, _chdr_w);
_recv_pkt->fill_payload(recv);
- xport.release_recv_buff(std::move(recv_buff));
+ xport.release_mgmt_buff(std::move(mgmt_buff));
return recv;
}