aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/cores
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2013-07-19 15:57:23 -0700
committerJosh Blum <josh@joshknows.com>2013-07-19 15:57:23 -0700
commitea418a8507a363633541aa7554a030b56a476d85 (patch)
treeaa188a38fb229d65b2044d920cb7b74b7d69569b /host/lib/usrp/cores
parentd251a7a55b198aa61ae05809c2e601a04fcb9b97 (diff)
downloaduhd-ea418a8507a363633541aa7554a030b56a476d85.tar.gz
uhd-ea418a8507a363633541aa7554a030b56a476d85.tar.bz2
uhd-ea418a8507a363633541aa7554a030b56a476d85.zip
uhd: remove warning on stream cmd to unused channels
Basically, many apps issue stream cmds by broadcasting the cmd to all channels. This warning is going to appear many times for most apps becasue of this. Since nothing is really harmed, its nicer to not see it and confuse users.
Diffstat (limited to 'host/lib/usrp/cores')
-rw-r--r--host/lib/usrp/cores/rx_vita_core_3000.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/cores/rx_vita_core_3000.cpp b/host/lib/usrp/cores/rx_vita_core_3000.cpp
index d6c3250a5..aad137ea3 100644
--- a/host/lib/usrp/cores/rx_vita_core_3000.cpp
+++ b/host/lib/usrp/cores/rx_vita_core_3000.cpp
@@ -77,7 +77,7 @@ struct rx_vita_core_3000_impl : rx_vita_core_3000
{
if (not _is_setup)
{
- UHD_MSG(warning) << "rx vita core 3000 issue stream command - not setup yet!";
+ //UHD_MSG(warning) << "rx vita core 3000 issue stream command - not setup yet!";
return;
}
UHD_ASSERT_THROW(stream_cmd.num_samps <= 0x0fffffff);