diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-28 15:06:37 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-28 15:06:37 -0700 |
commit | a3e1cb78b4c9791fbd3703d632cf22fa4005ee6c (patch) | |
tree | 25e9eff9f900ede6cf05ce83881fdd45d310fca2 /host | |
parent | b9280e8d5fd8e045c484d2396229312dea33dd54 (diff) | |
download | uhd-a3e1cb78b4c9791fbd3703d632cf22fa4005ee6c.tar.gz uhd-a3e1cb78b4c9791fbd3703d632cf22fa4005ee6c.tar.bz2 uhd-a3e1cb78b4c9791fbd3703d632cf22fa4005ee6c.zip |
e100: disable eeprom read so double open can work for now
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/usrp_e100/usrp_e100_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp index 5b039aafc..ae0c0b1b7 100644 --- a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp +++ b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp @@ -55,8 +55,8 @@ static device_addrs_t usrp_e100_find(const device_addr_t &hint){ new_addr["node"] = fs::system_complete(fs::path(hint["node"])).string(); try{ usrp_e100_iface::sptr iface = usrp_e100_iface::make(new_addr["node"]); - new_addr["name"] = iface->mb_eeprom["name"]; - new_addr["serial"] = iface->mb_eeprom["serial"]; + new_addr["name"] = "";//FIXME for double open on next branch iface->mb_eeprom["name"]; + new_addr["serial"] = "";//FIXME for double open on next branch iface->mb_eeprom["serial"]; } catch(const std::exception &e){ new_addr["name"] = ""; |