aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/x300/x300_radio_ctrl_impl.cpp
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2017-12-05 15:49:28 -0800
committerMartin Braun <martin.braun@ettus.com>2017-12-07 13:32:26 -0800
commitc0057e35b805faa9f0733ae27ca6e24609dc62c2 (patch)
tree7b8c33d4671e8553e81b1f338c643c944ff9576e /host/lib/usrp/x300/x300_radio_ctrl_impl.cpp
parentcc86cc5a6a713788cc58add7fd76486b8a8fa141 (diff)
downloaduhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.tar.gz
uhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.tar.bz2
uhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.zip
UHD: Add eeprom info to dboard_base
Diffstat (limited to 'host/lib/usrp/x300/x300_radio_ctrl_impl.cpp')
-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 1a37cbdd1..282754da6 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
@@ -639,9 +639,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
);