aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/x300
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2017-12-05 15:49:28 -0800
committermichael-west <michael.west@ettus.com>2017-12-19 18:25:54 -0800
commit109a2d26b61ce753ed5eca75e7b525bdf538e148 (patch)
tree66c1dbbae782b38876a1eead55daa6b95a499274 /host/lib/usrp/x300
parentffc8b89b4472fe12756f88e7edb67afc5634c13f (diff)
downloaduhd-109a2d26b61ce753ed5eca75e7b525bdf538e148.tar.gz
uhd-109a2d26b61ce753ed5eca75e7b525bdf538e148.tar.bz2
uhd-109a2d26b61ce753ed5eca75e7b525bdf538e148.zip
UHD: Add eeprom info to dboard_base
Diffstat (limited to 'host/lib/usrp/x300')
-rw-r--r--host/lib/usrp/x300/x300_radio_ctrl_impl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp b/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp
index a3bc2e691..a462ceea4 100644
--- a/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp
+++ b/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp
@@ -1,5 +1,5 @@
//
-// Copyright 2015-2016 Ettus Research
+// Copyright 2015-2017 Ettus Research, A National Instruments Company
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -372,9 +372,9 @@ void x300_radio_ctrl_impl::setup_radio(
//create a new dboard manager
boost::shared_ptr<x300_dboard_iface> db_iface = boost::make_shared<x300_dboard_iface>(db_config);
_db_manager = dboard_manager::make(
- _db_eeproms[RX_EEPROM_ADDR + DB_OFFSET].id,
- _db_eeproms[TX_EEPROM_ADDR + DB_OFFSET].id,
- _db_eeproms[GDB_EEPROM_ADDR + DB_OFFSET].id,
+ _db_eeproms[RX_EEPROM_ADDR + DB_OFFSET],
+ _db_eeproms[TX_EEPROM_ADDR + DB_OFFSET],
+ _db_eeproms[GDB_EEPROM_ADDR + DB_OFFSET],
db_iface, _tree->subtree(db_path),
true // defer daughterboard intitialization
);