aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorAshish Chaudhari <ashish@ettus.com>2015-07-20 13:55:17 -0700
committerAshish Chaudhari <ashish@ettus.com>2015-07-20 13:55:17 -0700
commitccb4e5ad4882792830c61a27a4badf8148513c28 (patch)
treebe0d5f937a1ca9a3227b8ca615e43a809ece50f7 /host/lib
parentb95f8af1da6640f09b3cc2491ab9a22a139e24ba (diff)
parentaf42e93a6e71c9b7ed03e6a208c8f4adfa74b68e (diff)
downloaduhd-ccb4e5ad4882792830c61a27a4badf8148513c28.tar.gz
uhd-ccb4e5ad4882792830c61a27a4badf8148513c28.tar.bz2
uhd-ccb4e5ad4882792830c61a27a4badf8148513c28.zip
Merge branch 'master' into x300/rev7_support
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/e300/e300_eeprom_manager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/e300/e300_eeprom_manager.cpp b/host/lib/usrp/e300/e300_eeprom_manager.cpp
index 778e3150c..752bd3768 100644
--- a/host/lib/usrp/e300/e300_eeprom_manager.cpp
+++ b/host/lib/usrp/e300/e300_eeprom_manager.cpp
@@ -38,7 +38,7 @@ static void _string_to_bytes(const std::string &string, size_t max_len, boost::u
for (size_t i = 0; i < len; i++){
buffer[i] = string[i];
}
- if (len < max_len - 1)
+ if (len < max_len)
buffer[len] = '\0';
}
@@ -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";