diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-10-27 14:51:02 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-11-09 14:59:14 -0800 |
commit | 1bd5f44de5485aa835999ee7a6c65ea6836953d1 (patch) | |
tree | 6bfda63eccca9e927efdc6c072d8f484b722644a /host/lib/usrp | |
parent | 646f05237d68f0e79a8ea8de52c2dd9f6e38e752 (diff) | |
download | uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.tar.gz uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.tar.bz2 uhd-1bd5f44de5485aa835999ee7a6c65ea6836953d1.zip |
rfnoc: Removed transport endianness as make arg
This is only confusing, since the blocks do not have to care about
endianness. The control interface needs to know (and takes care of it
internally), and the streaming transport does the same (and does not
directly connect to blocks).
Reviewed-By: Michael West <michael.west@ettus.com>
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/device3/device3_impl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/host/lib/usrp/device3/device3_impl.cpp b/host/lib/usrp/device3/device3_impl.cpp index 589925940..28b7bc34b 100644 --- a/host/lib/usrp/device3/device3_impl.cpp +++ b/host/lib/usrp/device3/device3_impl.cpp @@ -172,7 +172,6 @@ void device3_impl::enumerate_rfnoc_blocks( make_args.base_address = xport.send_sid.get_dst(); make_args.device_index = device_index; make_args.tree = subtree; - make_args.is_big_endian = (xport.endianness == ENDIANNESS_BIG); _rfnoc_block_ctrl.push_back(uhd::rfnoc::block_ctrl_base::make(make_args, noc_id)); } } |