aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/mboard_eeprom_c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/mboard_eeprom_c.cpp')
-rw-r--r--host/lib/usrp/mboard_eeprom_c.cpp58
1 files changed, 18 insertions, 40 deletions
diff --git a/host/lib/usrp/mboard_eeprom_c.cpp b/host/lib/usrp/mboard_eeprom_c.cpp
index f1cbaaed5..c923ac809 100644
--- a/host/lib/usrp/mboard_eeprom_c.cpp
+++ b/host/lib/usrp/mboard_eeprom_c.cpp
@@ -5,58 +5,36 @@
// SPDX-License-Identifier: GPL-3.0-or-later
//
-#include <uhd/usrp/mboard_eeprom.h>
-
#include <uhd/exception.hpp>
-
+#include <uhd/usrp/mboard_eeprom.h>
#include <string.h>
-uhd_error uhd_mboard_eeprom_make(
- uhd_mboard_eeprom_handle* h
-){
- UHD_SAFE_C(
- *h = new uhd_mboard_eeprom_t;
- )
+uhd_error uhd_mboard_eeprom_make(uhd_mboard_eeprom_handle* h)
+{
+ UHD_SAFE_C(*h = new uhd_mboard_eeprom_t;)
}
-uhd_error uhd_mboard_eeprom_free(
- uhd_mboard_eeprom_handle* h
-){
- UHD_SAFE_C(
- delete *h;
- *h = NULL;
- )
+uhd_error uhd_mboard_eeprom_free(uhd_mboard_eeprom_handle* h)
+{
+ UHD_SAFE_C(delete *h; *h = NULL;)
}
uhd_error uhd_mboard_eeprom_get_value(
- uhd_mboard_eeprom_handle h,
- const char* key,
- char* value_out,
- size_t strbuffer_len
-){
- UHD_SAFE_C_SAVE_ERROR(h,
- std::string value_cpp = h->mboard_eeprom_cpp.get(key);
- strncpy(value_out, value_cpp.c_str(), strbuffer_len);
- )
+ uhd_mboard_eeprom_handle h, const char* key, char* value_out, size_t strbuffer_len)
+{
+ UHD_SAFE_C_SAVE_ERROR(h, std::string value_cpp = h->mboard_eeprom_cpp.get(key);
+ strncpy(value_out, value_cpp.c_str(), strbuffer_len);)
}
uhd_error uhd_mboard_eeprom_set_value(
- uhd_mboard_eeprom_handle h,
- const char* key,
- const char* value
-){
- UHD_SAFE_C_SAVE_ERROR(h,
- h->mboard_eeprom_cpp[key] = value;
- )
+ uhd_mboard_eeprom_handle h, const char* key, const char* value)
+{
+ UHD_SAFE_C_SAVE_ERROR(h, h->mboard_eeprom_cpp[key] = value;)
}
uhd_error uhd_mboard_eeprom_last_error(
- uhd_mboard_eeprom_handle h,
- char* error_out,
- size_t strbuffer_len
-){
- UHD_SAFE_C(
- memset(error_out, '\0', strbuffer_len);
- strncpy(error_out, h->last_error.c_str(), strbuffer_len);
- )
+ uhd_mboard_eeprom_handle h, char* error_out, size_t strbuffer_len)
+{
+ UHD_SAFE_C(memset(error_out, '\0', strbuffer_len);
+ strncpy(error_out, h->last_error.c_str(), strbuffer_len);)
}