diff options
author | Joel Challis <git@zvecr.com> | 2021-09-15 09:21:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 01:21:36 -0700 |
commit | fa141a5a8fc3b3f439385db990ec34ad3bbbcb16 (patch) | |
tree | 6b8f1107ab2f3b896ebef97ef30156a2e9eae3e1 /quantum/keyboard.c | |
parent | b63453a75bc3e49802c7df1d2ff5b2ea95a5354f (diff) |
Migrate STM32_EEPROM_ENABLE to use EEPROM_DRIVER (#14433)
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r-- | quantum/keyboard.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index b98fc64e45..5846507b3f 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c @@ -97,9 +97,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef DIP_SWITCH_ENABLE # include "dip_switch.h" #endif -#ifdef STM32_EEPROM_ENABLE -# include "eeprom_stm32.h" -#endif #ifdef EEPROM_DRIVER # include "eeprom_driver.h" #endif @@ -246,9 +243,6 @@ void keyboard_setup(void) { disable_jtag(); #endif print_set_sendchar(sendchar); -#ifdef STM32_EEPROM_ENABLE - EEPROM_Init(); -#endif #ifdef EEPROM_DRIVER eeprom_driver_init(); #endif |