diff options
author | Martin Braun <martin.braun@ettus.com> | 2014-02-21 13:58:14 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-03-10 11:46:02 +0100 |
commit | 2047b85cf090f0c978da24e4c14bb674d2803bcd (patch) | |
tree | 790aa97e89097297b8de38103077eaf7d5b5c496 /host/lib/usrp/x300/x300_impl.cpp | |
parent | 81f9036788edbdb3498ac3b60b3e37791aab3e2b (diff) | |
download | uhd-2047b85cf090f0c978da24e4c14bb674d2803bcd.tar.gz uhd-2047b85cf090f0c978da24e4c14bb674d2803bcd.tar.bz2 uhd-2047b85cf090f0c978da24e4c14bb674d2803bcd.zip |
x300: merged subdev update routines for tx and rx
Diffstat (limited to 'host/lib/usrp/x300/x300_impl.cpp')
-rw-r--r-- | host/lib/usrp/x300/x300_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/x300/x300_impl.cpp b/host/lib/usrp/x300/x300_impl.cpp index b20897fc6..6a3ac5363 100644 --- a/host/lib/usrp/x300/x300_impl.cpp +++ b/host/lib/usrp/x300/x300_impl.cpp @@ -733,9 +733,9 @@ void x300_impl::setup_mb(const size_t mb_i, const uhd::device_addr_t &dev_addr) // create frontend mapping //////////////////////////////////////////////////////////////////// _tree->create<subdev_spec_t>(mb_path / "rx_subdev_spec") - .subscribe(boost::bind(&x300_impl::update_rx_subdev_spec, this, mb_i, _1)); + .subscribe(boost::bind(&x300_impl::update_subdev_spec, this, "rx", mb_i, _1)); _tree->create<subdev_spec_t>(mb_path / "tx_subdev_spec") - .subscribe(boost::bind(&x300_impl::update_tx_subdev_spec, this, mb_i, _1)); + .subscribe(boost::bind(&x300_impl::update_subdev_spec, this, "tx", mb_i, _1)); //////////////////////////////////////////////////////////////////// // and do the misc mboard sensors |