diff options
author | Josh Blum <josh@joshknows.com> | 2010-06-04 21:13:27 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-06-04 21:13:27 +0000 |
commit | 685cf432a373ee7556db507f7958f51e6ccf581a (patch) | |
tree | 56524f4d40152aa419832ddd7d8a05ac9045766e /host/lib/usrp/usrp_e/usrp_e_impl.cpp | |
parent | fcdbea4f089db2405820ad598979e639cf131ff5 (diff) | |
download | uhd-685cf432a373ee7556db507f7958f51e6ccf581a.tar.gz uhd-685cf432a373ee7556db507f7958f51e6ccf581a.tar.bz2 uhd-685cf432a373ee7556db507f7958f51e6ccf581a.zip |
prefixed helper classes with usrp_e to avoid collision
Diffstat (limited to 'host/lib/usrp/usrp_e/usrp_e_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp_e/usrp_e_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_e/usrp_e_impl.cpp b/host/lib/usrp/usrp_e/usrp_e_impl.cpp index f9af36887..226825510 100644 --- a/host/lib/usrp/usrp_e/usrp_e_impl.cpp +++ b/host/lib/usrp/usrp_e/usrp_e_impl.cpp @@ -77,8 +77,8 @@ usrp_e_impl::usrp_e_impl(const std::string &node){ //setup various interfaces into hardware _iface = usrp_e_iface::make(node); - _clock_ctrl = clock_ctrl::make(_iface); - _codec_ctrl = codec_ctrl::make(_iface); + _clock_ctrl = usrp_e_clock_ctrl::make(_iface); + _codec_ctrl = usrp_e_codec_ctrl::make(_iface); //initialize the mboard mboard_init(); |