diff options
author | Drashna Jaelre <drashna@live.com> | 2021-08-20 21:02:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 21:02:53 -0700 |
commit | a80d7891472335ec297082daecc6fbf90042c38c (patch) | |
tree | 04d34e9dd3658bf471ca9b11db3fa1095b4aa2c0 /quantum/bootmagic | |
parent | afd3bcbf45a9b7de097d7666ced2c674192949e5 (diff) |
Fix issues with VIA EEPROM init and bring in line with eeconfig functionality (#13243)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'quantum/bootmagic')
-rw-r--r-- | quantum/bootmagic/bootmagic_lite.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/quantum/bootmagic/bootmagic_lite.c b/quantum/bootmagic/bootmagic_lite.c index 9cbdcb0bbd..54bbf5a2ee 100644 --- a/quantum/bootmagic/bootmagic_lite.c +++ b/quantum/bootmagic/bootmagic_lite.c @@ -19,13 +19,7 @@ * * ...just incase someone wants to only change the eeprom behaviour */ -__attribute__((weak)) void bootmagic_lite_reset_eeprom(void) { -#if defined(VIA_ENABLE) - via_eeprom_reset(); -#else - eeconfig_disable(); -#endif -} +__attribute__((weak)) void bootmagic_lite_reset_eeprom(void) { eeconfig_disable(); } /** \brief The lite version of TMK's bootmagic based on Wilba. * |