summaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-03-27 20:08:17 +0100
committerGitHub <noreply@github.com>2023-03-27 20:08:17 +0100
commitc485d1cf2652bfb47afbb68f128a64f1bc518aa3 (patch)
treecf250354f738ea94b5295d356489ead04c8339ad /quantum/quantum.h
parent79b0f9168eafef1642f3223500197bf630a2433f (diff)
Remove use of keymap.h (#20004)
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 315fa25568..38186a48a3 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -18,7 +18,7 @@
#include "platform_deps.h"
#include "wait.h"
#include "matrix.h"
-#include "keymap.h"
+#include "keyboard.h"
#ifdef BACKLIGHT_ENABLE
# include "backlight.h"
@@ -36,6 +36,9 @@
# include "rgb_matrix.h"
#endif
+#include "keymap_common.h"
+#include "quantum_keycodes.h"
+#include "keycode_config.h"
#include "action_layer.h"
#include "eeconfig.h"
#include "bootloader.h"
@@ -44,10 +47,12 @@
#include "sync_timer.h"
#include "gpio.h"
#include "atomic_util.h"
+#include "host.h"
#include "led.h"
#include "action_util.h"
#include "action_tapping.h"
#include "print.h"
+#include "debug.h"
#include "suspend.h"
#include <stddef.h>
#include <stdlib.h>