summaryrefslogtreecommitdiff
path: root/tmk_core/common/arm_atsam/eeprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/arm_atsam/eeprom.c')
-rw-r--r--tmk_core/common/arm_atsam/eeprom.c2
1 files changed, 1 insertions, 1 deletions
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];