summaryrefslogtreecommitdiff
path: root/keyboards/marksard
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-04-05 14:48:21 +1100
committerGitHub <noreply@github.com>2024-04-05 14:48:21 +1100
commita14c03b96e75212d042621f4c68ccbecb7ee9901 (patch)
tree6a2de0f8d23d238e99760c5d00d5a90ea10f60fd /keyboards/marksard
parentf8a7a6848d737b01dcb5843503bcabcdd68cdb01 (diff)
Remove more unnecessary `quantum.h` includes (#23402)
Diffstat (limited to 'keyboards/marksard')
-rw-r--r--keyboards/marksard/rhymestone/common/oled_helper.c4
-rw-r--r--keyboards/marksard/treadstone48/common/oled_helper.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/keyboards/marksard/rhymestone/common/oled_helper.c b/keyboards/marksard/rhymestone/common/oled_helper.c
index 613798c941..4a0ca72e89 100644
--- a/keyboards/marksard/rhymestone/common/oled_helper.c
+++ b/keyboards/marksard/rhymestone/common/oled_helper.c
@@ -1,9 +1,11 @@
#include "oled_helper.h"
-#include "quantum.h"
+#include "host.h"
+#include "progmem.h"
#include <stdio.h>
#include <string.h>
#ifdef OLED_ENABLE
+#include "oled_driver.h"
void render_logo(void) {
diff --git a/keyboards/marksard/treadstone48/common/oled_helper.c b/keyboards/marksard/treadstone48/common/oled_helper.c
index e9a8cf564a..66124abe12 100644
--- a/keyboards/marksard/treadstone48/common/oled_helper.c
+++ b/keyboards/marksard/treadstone48/common/oled_helper.c
@@ -1,5 +1,7 @@
#include "oled_helper.h"
-#include "quantum.h"
+#include "oled_driver.h"
+#include "host.h"
+#include "rgblight.h"
#include <stdio.h>
#include <string.h>