diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-05 17:33:57 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-06 12:15:05 -0700 |
commit | 187fe9d3e7353021d89da38b687ee8729a060ccd (patch) | |
tree | 93a8a9a165a9f2ba14af2c0833cbe4e62c5e933c /host/lib/usrp/mimo_usrp.cpp | |
parent | 5ec42578fa9f69e92ae935c16717957a6ea66324 (diff) | |
download | uhd-187fe9d3e7353021d89da38b687ee8729a060ccd.tar.gz uhd-187fe9d3e7353021d89da38b687ee8729a060ccd.tar.bz2 uhd-187fe9d3e7353021d89da38b687ee8729a060ccd.zip |
usrp: tweaks to subdev spec printing
Diffstat (limited to 'host/lib/usrp/mimo_usrp.cpp')
-rw-r--r-- | host/lib/usrp/mimo_usrp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/mimo_usrp.cpp b/host/lib/usrp/mimo_usrp.cpp index 767fc1d48..34dee42b8 100644 --- a/host/lib/usrp/mimo_usrp.cpp +++ b/host/lib/usrp/mimo_usrp.cpp @@ -152,7 +152,7 @@ public: /******************************************************************* * RX methods ******************************************************************/ - void set_rx_subdev_spec(size_t chan, const uhd::usrp::subdev_spec_t &spec){ + void set_rx_subdev_spec(size_t chan, const subdev_spec_t &spec){ UHD_ASSERT_THROW(spec.size() <= 1); _mboard(chan)[MBOARD_PROP_RX_SUBDEV_SPEC] = spec; } @@ -224,7 +224,7 @@ public: /******************************************************************* * TX methods ******************************************************************/ - void set_tx_subdev_spec(size_t chan, const uhd::usrp::subdev_spec_t &spec){ + void set_tx_subdev_spec(size_t chan, const subdev_spec_t &spec){ UHD_ASSERT_THROW(spec.size() <= 1); _mboard(chan)[MBOARD_PROP_TX_SUBDEV_SPEC] = spec; } |