aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-02-15 23:05:54 +0100
committerMartin Braun <martin.braun@ettus.com>2018-02-15 23:05:54 +0100
commit1ac47398feca6a3093bcec92cbeb603eb81350dd (patch)
tree9e89a9511eb3aa69a05193bc4b592eebe65ca42c /host
parentddb58eae546cab27b63da1933e20b8015e5a2ba2 (diff)
downloaduhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.tar.gz
uhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.tar.bz2
uhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.zip
mg: Fixed typo in set_rx_bandwidth()
Diffstat (limited to 'host')
-rw-r--r--host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp b/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp
index ebb350f4a..b15f1250b 100644
--- a/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp
+++ b/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp
@@ -387,7 +387,8 @@ double magnesium_radio_ctrl_impl::set_rx_bandwidth(
// FIXME: setting analog bandwidth on AD9371 take no effect.
// Remove this warning when ADI can confirm that it works.
UHD_LOG_WARNING(unique_id(),
- "set_tx_bandwidth take no effect on AD9371. Default analog bandwidth is 100MHz");
+ "set_rx_bandwidth take no effect on AD9371. "
+ "Default analog bandwidth is 100MHz");
return AD9371_RX_MAX_BANDWIDTH;
}
@@ -400,7 +401,8 @@ double magnesium_radio_ctrl_impl::set_tx_bandwidth(
// FIXME: setting analog bandwidth on AD9371 take no effect.
// Remove this warning when ADI can confirm that it works.
UHD_LOG_WARNING(unique_id(),
- "set_tx_bandwidth take no effect on AD9371. Default analog bandwidth is 100MHz");
+ "set_tx_bandwidth take no effect on AD9371. "
+ "Default analog bandwidth is 100MHz");
return AD9371_TX_MAX_BANDWIDTH ;
}