From ad3e4d6c132ae3e0662972488685517c0cfde153 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Wed, 11 Sep 2019 23:15:39 +0100 Subject: [PATCH] Tidy up backlight header use to avoid build issues (#6714) --- keyboards/chimera_ergo/chimera_ergo.h | 3 --- keyboards/chimera_ls/chimera_ls.h | 3 --- keyboards/chimera_ortho/chimera_ortho.h | 3 --- keyboards/comet46/comet46.h | 3 --- keyboards/dichotomy/dichotomy.h | 4 ---- keyboards/honeycomb/honeycomb.h | 5 ----- keyboards/mitosis/mitosis.h | 3 --- keyboards/redox_w/redox_w.h | 3 --- keyboards/telophase/telophase.h | 3 --- 9 files changed, 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 #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 #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 #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 // 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 #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 #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 #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 #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 #define red_led_off PORTF |= (1<<5) #define red_led_on PORTF &= ~(1<<5)