summaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorEvgenii Vilkov <zzeneg@gmail.com>2023-05-31 20:46:03 +0200
committerGitHub <noreply@github.com>2023-05-31 11:46:03 -0700
commit04719c774d895d0cec3bcbe69291d32916280b08 (patch)
treef332e676fa943810f7a9f64e9d68f209aa720992 /quantum/quantum.c
parentb3a7f80e1ad3491bd7f58dad518554717126c1b9 (diff)
Fix backlight sync on suspend_power_down for split keyboards (#21079)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 091cf298f7..fe3e85720d 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -468,7 +468,7 @@ void suspend_power_down_quantum(void) {
#ifndef NO_SUSPEND_POWER_DOWN
// Turn off backlight
# ifdef BACKLIGHT_ENABLE
- backlight_set(0);
+ backlight_level_noeeprom(0);
# endif
# ifdef LED_MATRIX_ENABLE