]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Tidy up backlight header use to avoid build issues (#6714)
authorJoel Challis <git@zvecr.com>
Wed, 11 Sep 2019 22:15:39 +0000 (23:15 +0100)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2019 22:15:39 +0000 (23:15 +0100)
keyboards/chimera_ergo/chimera_ergo.h
keyboards/chimera_ls/chimera_ls.h
keyboards/chimera_ortho/chimera_ortho.h
keyboards/comet46/comet46.h
keyboards/dichotomy/dichotomy.h
keyboards/honeycomb/honeycomb.h
keyboards/mitosis/mitosis.h
keyboards/redox_w/redox_w.h
keyboards/telophase/telophase.h

index a9275e3a85c7f937824101e8258607d458951ef6..78e5c0dac54a799c77a650cfff129fca4c491d0a 100644 (file)
@@ -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)
index bb99684e5f4810689254f90df71dc7172cdca800..8ca8534eb99ab0a1a8fd4aab3dd0ad7ccb629e12 100644 (file)
@@ -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)
index 598125275106c62f052d9202e212694a34c7d643..fc2eba86bd411431da05a78ede6a9039385849fb 100644 (file)
@@ -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)
index 07dad0a001441815c758c3205998a9ee8cf33361..b6598f01785fcc6401aa26617987010941c3c0c2 100644 (file)
@@ -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
index 030209ff01a09be15eeeb54f905740fbcb1582ac..4355a1c9087df5dd3c587a679589e66b20d24cdf 100755 (executable)
@@ -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)
index 9374a02c5c622ae64c166ff9e51183f417e5b3c4..ec54b59f207c6129123ef45be42d6194978ac99f 100755 (executable)
@@ -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)
index 4b73f0407a343703af0dffeec676b94a31d727ea..80476e71c884aa5b40c32b6dcef880117000f903 100644 (file)
@@ -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)
index 3adcb121d1c94036a930bcca32888a99a3f8645d..727c3050dc75437402f45156deb5b07a9e74fbca 100644 (file)
@@ -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)
index aae4fc3d4846121ef55a20dc16379f73989dac6d..a7102498ce438d1695439e6ec8f18aede103e0c6 100644 (file)
@@ -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)