aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-10-19 17:49:06 -0700
committerMartin Braun <martin.braun@ettus.com>2016-10-19 17:49:06 -0700
commitbee27a41170d80b0fa5c35e07653b28702b08590 (patch)
tree5ec7645bc67e7eac78fda2b46167fae99723de49 /host
parentbd8409cc7602946ed8dc1cfb05d2383eea939800 (diff)
downloaduhd-bee27a41170d80b0fa5c35e07653b28702b08590.tar.gz
uhd-bee27a41170d80b0fa5c35e07653b28702b08590.tar.bz2
uhd-bee27a41170d80b0fa5c35e07653b28702b08590.zip
rfnoc: Fixed graph search algorithm for active-ports only
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/rfnoc/node_ctrl_base.ipp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp
index 4ab25c597..d300f72a7 100644
--- a/host/include/uhd/rfnoc/node_ctrl_base.ipp
+++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp
@@ -59,7 +59,7 @@ namespace uhd {
) {
size_t our_port = it->first;
if (active_only
- and not (downstream ? _tx_streamer_active[our_port] : _tx_streamer_active[our_port] )) {
+ and not (downstream ? _tx_streamer_active[our_port] : _rx_streamer_active[our_port] )) {
continue;
}
sptr one_next_node = it->second.lock();