diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-12 18:17:37 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-12 18:17:37 +0000 |
commit | 68a65581db6455bfd4652576eeb6795e3c1ca68b (patch) | |
tree | 98ca08975b38ac2a3c3c2f683ac2eac795b35302 /host | |
parent | a22fb2dabbed4f8c892b6f899f3db85543dc2509 (diff) | |
download | uhd-68a65581db6455bfd4652576eeb6795e3c1ca68b.tar.gz uhd-68a65581db6455bfd4652576eeb6795e3c1ca68b.tar.bz2 uhd-68a65581db6455bfd4652576eeb6795e3c1ca68b.zip |
usrp-e: fix typo in verify subdev spec
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/usrp_e/mboard_impl.cpp | 4 | ||||
-rw-r--r-- | host/utils/uhd_find_devices.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp_e/mboard_impl.cpp b/host/lib/usrp/usrp_e/mboard_impl.cpp index 822f1571d..4914bd3b7 100644 --- a/host/lib/usrp/usrp_e/mboard_impl.cpp +++ b/host/lib/usrp/usrp_e/mboard_impl.cpp @@ -139,7 +139,7 @@ void usrp_e_impl::mboard_set(const wax::obj &key, const wax::obj &val){ case MBOARD_PROP_RX_SUBDEV_SPEC: _rx_subdev_spec = val.as<subdev_spec_t>(); - verify_rx_subdev_spec(_rx_subdev_spec, this->get_link()); + verify_rx_subdev_spec(_rx_subdev_spec, _mboard_proxy->get_link()); //sanity check UHD_ASSERT_THROW(_rx_subdev_spec.size() == 1); //set the mux @@ -150,7 +150,7 @@ void usrp_e_impl::mboard_set(const wax::obj &key, const wax::obj &val){ case MBOARD_PROP_TX_SUBDEV_SPEC: _tx_subdev_spec = val.as<subdev_spec_t>(); - verify_tx_subdev_spec(_tx_subdev_spec, this->get_link()); + verify_tx_subdev_spec(_tx_subdev_spec, _mboard_proxy->get_link()); //sanity check UHD_ASSERT_THROW(_tx_subdev_spec.size() == 1); //set the mux diff --git a/host/utils/uhd_find_devices.cpp b/host/utils/uhd_find_devices.cpp index 8281c92bc..b778eeb68 100644 --- a/host/utils/uhd_find_devices.cpp +++ b/host/utils/uhd_find_devices.cpp @@ -53,7 +53,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ std::cout << "-- UHD Device " << i << std::endl; std::cout << "--------------------------------------------------" << std::endl; std::cout << device_addrs[i].to_pp_string() << std::endl << std::endl; - uhd::device::make(device_addrs[i]); //test make + //uhd::device::make(device_addrs[i]); //test make } return 0; |