From 7f63bcf38b55b3bf23c5606c2e1f8e15724f5984 Mon Sep 17 00:00:00 2001 From: Joakim Tufvegren <104522+firetech@users.noreply.github.com> Date: Thu, 17 Feb 2022 17:33:07 +0100 Subject: [PATCH] [Bug] Re-add call to `suspend_power_down_kb()` (#16382) --- quantum/quantum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quantum/quantum.c b/quantum/quantum.c index 35b6351e9d9..be43faaf6b7 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -488,6 +488,7 @@ __attribute__((weak)) void suspend_power_down_user(void) {} __attribute__((weak)) void suspend_power_down_kb(void) { suspend_power_down_user(); } void suspend_power_down_quantum(void) { + suspend_power_down_kb(); #ifndef NO_SUSPEND_POWER_DOWN // Turn off backlight # ifdef BACKLIGHT_ENABLE