diff options
author | Johannes Demel <johannes.demel@ettus.com> | 2013-11-19 13:17:52 -0800 |
---|---|---|
committer | Johannes Demel <johannes.demel@ettus.com> | 2013-11-19 13:17:52 -0800 |
commit | 8a78802c10fa64af5d1ec7cf39ce389f003cce11 (patch) | |
tree | dc70271008e265d4d2ae29c4a93f5b87af75dc08 /host/lib/usrp/b200 | |
parent | 25660c5c9e83e352e10d9fe9feb115d40a322353 (diff) | |
download | uhd-8a78802c10fa64af5d1ec7cf39ce389f003cce11.tar.gz uhd-8a78802c10fa64af5d1ec7cf39ce389f003cce11.tar.bz2 uhd-8a78802c10fa64af5d1ec7cf39ce389f003cce11.zip |
b200/dtor-stall: final fixes for stall bug
Diffstat (limited to 'host/lib/usrp/b200')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index 069b8ff58..1eddeb8bc 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -155,11 +155,12 @@ boost::optional<uhd::msg_task::msg_type_t> b200_impl::handle_async_task( boost::shared_ptr<AsyncTaskData> data ) { - managed_recv_buffer::sptr buff = xport->get_recv_buff(); - if (not buff or buff->size() < 8) return NULL; + managed_recv_buffer::sptr buff = xport->get_recv_buff(); + if (not buff or buff->size() < 8) + return NULL; + const boost::uint32_t sid = uhd::wtohx(buff->cast<const boost::uint32_t *>()[1]); - switch (sid) - { + switch (sid) { //if the packet is a control response case B200_RESP0_MSG_SID: |