From 876d4150aa3da531ddd687b48afada6e43f79146 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 2 Mar 2020 15:25:13 -0800 Subject: 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. --- host/lib/usrp/mboard_eeprom_c.cpp | 58 ++++++++++++--------------------------- 1 file changed, 18 insertions(+), 40 deletions(-) (limited to 'host/lib/usrp/mboard_eeprom_c.cpp') 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 - #include - +#include #include -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);) } -- cgit v1.2.3