summaryrefslogtreecommitdiff
path: root/common/eeconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/eeconfig.c')
-rw-r--r--common/eeconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/eeconfig.c b/common/eeconfig.c
index 0481d4b9c3..a833f4db9c 100644
--- a/common/eeconfig.c
+++ b/common/eeconfig.c
@@ -30,8 +30,8 @@ bool eeconfig_is_enabled(void)
uint8_t eeconfig_read_debug(void) { return eeprom_read_byte(EECONFIG_DEBUG); }
void eeconfig_write_debug(uint8_t val) { eeprom_write_byte(EECONFIG_DEBUG, val); }
-uint8_t eeconfig_read_defalt_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); }
-void eeconfig_write_defalt_layer(uint8_t val) { eeprom_write_byte(EECONFIG_DEFAULT_LAYER, val); }
+uint8_t eeconfig_read_default_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); }
+void eeconfig_write_default_layer(uint8_t val) { eeprom_write_byte(EECONFIG_DEFAULT_LAYER, val); }
uint8_t eeconfig_read_keymap(void) { return eeprom_read_byte(EECONFIG_KEYMAP); }
void eeconfig_write_keymap(uint8_t val) { eeprom_write_byte(EECONFIG_KEYMAP, val); }