aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2019-09-11 23:15:39 +0100
committerGitHub <noreply@github.com>2019-09-11 23:15:39 +0100
commitad3e4d6c132ae3e0662972488685517c0cfde153 (patch)
tree284ffe706caab67bafd232188725ca64190ecddd /keyboards
parent251b4fb79d558f550a481cad448000c1622d58f9 (diff)
downloadfirmware-ad3e4d6c132ae3e0662972488685517c0cfde153.tar.gz
firmware-ad3e4d6c132ae3e0662972488685517c0cfde153.tar.bz2
firmware-ad3e4d6c132ae3e0662972488685517c0cfde153.zip
Tidy up backlight header use to avoid build issues (#6714)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/chimera_ergo/chimera_ergo.h3
-rw-r--r--keyboards/chimera_ls/chimera_ls.h3
-rw-r--r--keyboards/chimera_ortho/chimera_ortho.h3
-rw-r--r--keyboards/comet46/comet46.h3
-rwxr-xr-xkeyboards/dichotomy/dichotomy.h4
-rwxr-xr-xkeyboards/honeycomb/honeycomb.h5
-rw-r--r--keyboards/mitosis/mitosis.h3
-rw-r--r--keyboards/redox_w/redox_w.h3
-rw-r--r--keyboards/telophase/telophase.h3
9 files changed, 0 insertions, 30 deletions
diff --git a/keyboards/chimera_ergo/chimera_ergo.h b/keyboards/chimera_ergo/chimera_ergo.h
index a9275e3a8..78e5c0dac 100644
--- a/keyboards/chimera_ergo/chimera_ergo.h
+++ b/keyboards/chimera_ergo/chimera_ergo.h
@@ -2,9 +2,6 @@
#define CHIMERA_ERGO_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
diff --git a/keyboards/chimera_ls/chimera_ls.h b/keyboards/chimera_ls/chimera_ls.h
index bb99684e5..8ca8534eb 100644
--- a/keyboards/chimera_ls/chimera_ls.h
+++ b/keyboards/chimera_ls/chimera_ls.h
@@ -2,9 +2,6 @@
#define CHIMERA_LETS_SPLIT_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
diff --git a/keyboards/chimera_ortho/chimera_ortho.h b/keyboards/chimera_ortho/chimera_ortho.h
index 598125275..fc2eba86b 100644
--- a/keyboards/chimera_ortho/chimera_ortho.h
+++ b/keyboards/chimera_ortho/chimera_ortho.h
@@ -2,9 +2,6 @@
#define CHIMERA_ORTHO_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
diff --git a/keyboards/comet46/comet46.h b/keyboards/comet46/comet46.h
index 07dad0a00..b6598f017 100644
--- a/keyboards/comet46/comet46.h
+++ b/keyboards/comet46/comet46.h
@@ -2,9 +2,6 @@
#define COMET46_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
// This a shortcut to help you visually see your layout.
// The first section contains all of the arguements
diff --git a/keyboards/dichotomy/dichotomy.h b/keyboards/dichotomy/dichotomy.h
index 030209ff0..4355a1c90 100755
--- a/keyboards/dichotomy/dichotomy.h
+++ b/keyboards/dichotomy/dichotomy.h
@@ -1,13 +1,9 @@
#ifndef DICHOTOMY_H
#define DICHOTOMY_H
-#include QMK_KEYBOARD_H
#include "report.h"
#include "pointing_device.h"
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off() PORTF |= (1<<6)
#define red_led_on() PORTF &= ~(1<<6)
diff --git a/keyboards/honeycomb/honeycomb.h b/keyboards/honeycomb/honeycomb.h
index 9374a02c5..ec54b59f2 100755
--- a/keyboards/honeycomb/honeycomb.h
+++ b/keyboards/honeycomb/honeycomb.h
@@ -1,11 +1,6 @@
#pragma once
-#define HONEYCOMB_H
-
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define RED_LED_OFF() writePinHigh(F6)
#define RED_LED_ON() writePinLow(F6)
diff --git a/keyboards/mitosis/mitosis.h b/keyboards/mitosis/mitosis.h
index 4b73f0407..80476e71c 100644
--- a/keyboards/mitosis/mitosis.h
+++ b/keyboards/mitosis/mitosis.h
@@ -2,9 +2,6 @@
#define MITOSIS_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
diff --git a/keyboards/redox_w/redox_w.h b/keyboards/redox_w/redox_w.h
index 3adcb121d..727c3050d 100644
--- a/keyboards/redox_w/redox_w.h
+++ b/keyboards/redox_w/redox_w.h
@@ -1,9 +1,6 @@
#pragma once
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)
diff --git a/keyboards/telophase/telophase.h b/keyboards/telophase/telophase.h
index aae4fc3d4..a7102498c 100644
--- a/keyboards/telophase/telophase.h
+++ b/keyboards/telophase/telophase.h
@@ -2,9 +2,6 @@
#define TELOPHASE_H
#include "quantum.h"
-#include "matrix.h"
-#include "backlight.h"
-#include <stddef.h>
#define red_led_off PORTF |= (1<<5)
#define red_led_on PORTF &= ~(1<<5)