aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2018-12-20 22:53:23 -0800
committerBrent Stapleton <brent.stapleton@ettus.com>2018-12-21 10:05:28 -0800
commit35c772d551442c5be4edb0cabe696744727c19d1 (patch)
treebd260359f8e228b176c6c0d08fc0eca4329c4a31
parent46bd88639e9ecd6d37f4509805fa6ecc6b41d8d0 (diff)
downloaduhd-35c772d551442c5be4edb0cabe696744727c19d1.tar.gz
uhd-35c772d551442c5be4edb0cabe696744727c19d1.tar.bz2
uhd-35c772d551442c5be4edb0cabe696744727c19d1.zip
RFNoC: Fix for late packet errors
- Fix variable name in recent graph traversal changes
-rw-r--r--host/include/uhd/rfnoc/node_ctrl_base.ipp4
1 files changed, 3 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp
index 266df445a..cb56e2d90 100644
--- a/host/include/uhd/rfnoc/node_ctrl_base.ipp
+++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp
@@ -64,7 +64,9 @@ namespace uhd {
continue;
}
if (active_only
- and not (downstream ? _tx_streamer_active[our_port] : _rx_streamer_active[our_port] )) {
+ and not (downstream ?
+ _tx_streamer_active[connected_port] :
+ _rx_streamer_active[connected_port] )) {
continue;
}
sptr one_next_node = it->second.lock();