diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-03-02 15:25:13 -0800 |
---|---|---|
committer | atrnati <54334261+atrnati@users.noreply.github.com> | 2020-03-03 08:51:32 -0600 |
commit | 876d4150aa3da531ddd687b48afada6e43f79146 (patch) | |
tree | fd72a71419f4cd800d4e500cfcaded4dfc8dc367 /host/lib/usrp/mboard_eeprom_c.cpp | |
parent | 1393553d623bdf4ba40d5435c9719b6ce990d9ac (diff) | |
download | uhd-876d4150aa3da531ddd687b48afada6e43f79146.tar.gz uhd-876d4150aa3da531ddd687b48afada6e43f79146.tar.bz2 uhd-876d4150aa3da531ddd687b48afada6e43f79146.zip |
uhd: Apply clang-format against all .cpp and .hpp files in host/
Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of
files that clang-format gets applied against.
Diffstat (limited to 'host/lib/usrp/mboard_eeprom_c.cpp')
-rw-r--r-- | host/lib/usrp/mboard_eeprom_c.cpp | 58 |
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);) } |