diff options
| author | Nick Brassel | 2025-04-19 21:20:00 +0200 |
|---|---|---|
| committer | GitHub | 2025-04-19 21:20:00 +0200 |
| commit | 5c39722ab9c9c7b86f34d4ed4ca4620a47dab01b (patch) | |
| tree | 54580856cc6c7cdea1fdf69775f67c13d0d28c82 /quantum/eeconfig.c | |
| parent | ea85ace4a90baca401e49f35365a6a8f7d3802c4 (diff) | |
Allow for disabling EEPROM subsystem entirely. (#25173)
Diffstat (limited to 'quantum/eeconfig.c')
| -rw-r--r-- | quantum/eeconfig.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/quantum/eeconfig.c b/quantum/eeconfig.c index 9aa60fc968..31bc9a6051 100644 --- a/quantum/eeconfig.c +++ b/quantum/eeconfig.c @@ -2,16 +2,11 @@ #include <stdint.h> #include <stdbool.h> #include "debug.h" -#include "eeprom.h" #include "eeconfig.h" #include "action_layer.h" #include "nvm_eeconfig.h" #include "keycode_config.h" -#ifdef EEPROM_DRIVER -# include "eeprom_driver.h" -#endif // EEPROM_DRIVER - #ifdef BACKLIGHT_ENABLE # include "backlight.h" #endif // BACKLIGHT_ENABLE |