aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Fischer <moritz.fischer@ettus.com>2015-07-16 13:59:14 -0700
committerMoritz Fischer <moritz.fischer@ettus.com>2015-07-16 13:59:14 -0700
commit3922f56adf33126abb288611f5a64b9fb1c11b25 (patch)
tree708248781f648b4698187720c8c5853edbf7f392
parentbf84ba856e1d6216166f97baff0f5114c1116bf9 (diff)
downloaduhd-3922f56adf33126abb288611f5a64b9fb1c11b25.tar.gz
uhd-3922f56adf33126abb288611f5a64b9fb1c11b25.tar.bz2
uhd-3922f56adf33126abb288611f5a64b9fb1c11b25.zip
e3xx: Make all e3xx motherboards show up as such.
All currently available e3xx daugherboards are equivalent from a UHD perspective, so make them consistently show up as "E3XX". Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
-rw-r--r--host/lib/usrp/e300/e300_eeprom_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/e300/e300_eeprom_manager.cpp b/host/lib/usrp/e300/e300_eeprom_manager.cpp
index 778e3150c..45d1abea7 100644
--- a/host/lib/usrp/e300/e300_eeprom_manager.cpp
+++ b/host/lib/usrp/e300/e300_eeprom_manager.cpp
@@ -226,10 +226,10 @@ std::string e300_eeprom_manager::get_mb_type_string(void) const
_mb_eeprom["product"]);
switch (product) {
case E300_MB_PID:
- return "E300";
+ return "E3XX";
case E310_MB_PID:
- return "E310";
+ return "E3XX";
default:
return "UNKNOWN";