summaryrefslogtreecommitdiff
path: root/quantum/eeconfig.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-12-24 06:52:58 +0000
committerGitHub <noreply@github.com>2023-12-24 06:52:58 +0000
commitb24bd2351a8536b85422db4157b06ee65cc9e90f (patch)
treef948cce23c43ac66ab079dda774d9576677b5591 /quantum/eeconfig.c
parentb824faca71e1db86c158a0e09f225410c1e7e0a8 (diff)
Remove redundant audio eeconfig init (#22736)
Diffstat (limited to 'quantum/eeconfig.c')
-rw-r--r--quantum/eeconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/eeconfig.c b/quantum/eeconfig.c
index d9eea13758..2d2180b4b4 100644
--- a/quantum/eeconfig.c
+++ b/quantum/eeconfig.c
@@ -54,7 +54,7 @@ void eeconfig_init_quantum(void) {
// Enable oneshot and autocorrect by default: 0b0001 0100 0000 0000
eeprom_update_word(EECONFIG_KEYMAP, 0x1400);
eeprom_update_byte(EECONFIG_BACKLIGHT, 0);
- eeprom_update_byte(EECONFIG_AUDIO, 0xFF); // On by default
+ eeprom_update_byte(EECONFIG_AUDIO, 0);
eeprom_update_dword(EECONFIG_RGBLIGHT, 0);
eeprom_update_byte(EECONFIG_RGBLIGHT_EXTENDED, 0);
eeprom_update_byte(EECONFIG_UNUSED, 0);