summaryrefslogtreecommitdiff
path: root/quantum/command.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-06-27 08:17:28 +0100
committerGitHub <noreply@github.com>2025-06-27 08:17:28 +0100
commitbc5c5e3251d019f3e070d7ea9e5c77501b25738d (patch)
treed97835b76f900f05e41d6a9b24f68c6f16bc0892 /quantum/command.c
parentf39e08e2baa14bd6e1031a64d1e879f450fb2fd7 (diff)
Align sleep_led logic (#25395)
Diffstat (limited to 'quantum/command.c')
-rw-r--r--quantum/command.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/command.c b/quantum/command.c
index 998d9b9aa1..ea2fd68e2b 100644
--- a/quantum/command.c
+++ b/quantum/command.c
@@ -28,7 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
28#include "action_layer.h" 28#include "action_layer.h"
29#include "action_util.h" 29#include "action_util.h"
30#include "eeconfig.h" 30#include "eeconfig.h"
31#include "sleep_led.h"
32#include "led.h" 31#include "led.h"
33#include "command.h" 32#include "command.h"
34#include "quantum.h" 33#include "quantum.h"
@@ -39,6 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
39# include "backlight.h" 38# include "backlight.h"
40#endif 39#endif
41 40
41#ifdef SLEEP_LED_ENABLE
42# include "sleep_led.h"
43#endif
44
42#if defined(MOUSEKEY_ENABLE) 45#if defined(MOUSEKEY_ENABLE)
43# include "mousekey.h" 46# include "mousekey.h"
44#endif 47#endif