diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-10-19 17:49:06 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-10-19 17:49:06 -0700 |
commit | bee27a41170d80b0fa5c35e07653b28702b08590 (patch) | |
tree | 5ec7645bc67e7eac78fda2b46167fae99723de49 /host | |
parent | bd8409cc7602946ed8dc1cfb05d2383eea939800 (diff) | |
download | uhd-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.ipp | 2 |
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(); |