aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/usrp_e100/usrp_e100_impl.cpp4
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"] = "";