diff options
author | QMK Bot <hello@qmk.fm> | 2020-01-24 02:15:29 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-01-24 02:15:29 +0000 |
commit | fe50883c1568b1914fcadbe0c7f029c3f9fd99f4 (patch) | |
tree | e72189597e8be880b82a44ce520522a6fdec6099 | |
parent | d13ada11622977bcc0b530212b4405229805016d (diff) |
format code according to conventions [skip ci]
-rw-r--r-- | drivers/eeprom/eeprom_transient.h | 2 | ||||
-rw-r--r-- | tmk_core/common/arm_atsam/eeprom.c | 2 | ||||
-rw-r--r-- | tmk_core/common/chibios/eeprom_teensy.c | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/drivers/eeprom/eeprom_transient.h b/drivers/eeprom/eeprom_transient.h index ca9d634f06..d06189b246 100644 --- a/drivers/eeprom/eeprom_transient.h +++ b/drivers/eeprom/eeprom_transient.h @@ -21,5 +21,5 @@ */ #ifndef TRANSIENT_EEPROM_SIZE # include "eeconfig.h" -# define TRANSIENT_EEPROM_SIZE (((EECONFIG_SIZE+3)/4)*4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO +# define TRANSIENT_EEPROM_SIZE (((EECONFIG_SIZE + 3) / 4) * 4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO #endif diff --git a/tmk_core/common/arm_atsam/eeprom.c b/tmk_core/common/arm_atsam/eeprom.c index a69f382823..ccd5d15a54 100644 --- a/tmk_core/common/arm_atsam/eeprom.c +++ b/tmk_core/common/arm_atsam/eeprom.c @@ -18,7 +18,7 @@ #ifndef EEPROM_SIZE # include "eeconfig.h" -# define EEPROM_SIZE (((EECONFIG_SIZE+3)/4)*4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO +# define EEPROM_SIZE (((EECONFIG_SIZE + 3) / 4) * 4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO #endif __attribute__((aligned(4))) static uint8_t buffer[EEPROM_SIZE]; diff --git a/tmk_core/common/chibios/eeprom_teensy.c b/tmk_core/common/chibios/eeprom_teensy.c index 0fab9f73d6..d436d0cb95 100644 --- a/tmk_core/common/chibios/eeprom_teensy.c +++ b/tmk_core/common/chibios/eeprom_teensy.c @@ -61,7 +61,6 @@ Attempts to modify the EEPROM_SIZE setting may brick your board. */ - // Writing unaligned 16 or 32 bit data is handled automatically when // this is defined, but at a cost of extra code size. Without this, // any unaligned write will cause a hard fault exception! If you're @@ -529,7 +528,7 @@ void eeprom_write_block(const void *buf, void *addr, uint32_t len) { # ifndef EEPROM_SIZE # include "eeconfig.h" -# define EEPROM_SIZE (((EECONFIG_SIZE+3)/4)*4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO +# define EEPROM_SIZE (((EECONFIG_SIZE + 3) / 4) * 4) // based off eeconfig's current usage, aligned to 4-byte sizes, to deal with LTO # endif __attribute__((aligned(4))) static uint8_t buffer[EEPROM_SIZE]; |