aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/node.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-09-04 18:20:41 -0700
committerMartin Braun <martin.braun@ettus.com>2019-11-26 12:16:25 -0800
commitf9f9cb0d2cd29b1f2da21c026560215e7f3043a5 (patch)
tree5eced81c32930554901e177947384981074b698d /host/lib/rfnoc/node.cpp
parent7d69dcdcc318ccdf87038b732acbf2bf7c087b60 (diff)
downloaduhd-f9f9cb0d2cd29b1f2da21c026560215e7f3043a5.tar.gz
uhd-f9f9cb0d2cd29b1f2da21c026560215e7f3043a5.tar.bz2
uhd-f9f9cb0d2cd29b1f2da21c026560215e7f3043a5.zip
rfnoc: Add DMA FIFO block controller
Diffstat (limited to 'host/lib/rfnoc/node.cpp')
-rw-r--r--host/lib/rfnoc/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/rfnoc/node.cpp b/host/lib/rfnoc/node.cpp
index 90f0a0a91..23d5a340d 100644
--- a/host/lib/rfnoc/node.cpp
+++ b/host/lib/rfnoc/node.cpp
@@ -446,7 +446,7 @@ void node_t::clean_props()
prop_accessor_t prop_accessor{};
for (const auto& type_prop_pair : _props) {
for (const auto& prop : type_prop_pair.second) {
- if (prop->is_dirty() && _clean_cb_registry.count(prop)) {
+ if (prop->is_valid() && prop->is_dirty() && _clean_cb_registry.count(prop)) {
_clean_cb_registry.at(prop)();
}
prop_accessor.mark_clean(*prop);