From c5221fa1cb1e903600205ba831c841f9d3aad33f Mon Sep 17 00:00:00 2001 From: skullY Date: Sun, 27 Jan 2019 17:34:44 -0800 Subject: [PATCH] fix the led_matrix.h naming conflict --- quantum/led_matrix.c | 2 +- quantum/led_matrix_drivers.c | 2 +- quantum/{led_matrix.h => ledmatrix.h} | 0 quantum/quantum.h | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename quantum/{led_matrix.h => ledmatrix.h} (100%) diff --git a/quantum/led_matrix.c b/quantum/led_matrix.c index ca37af0d3..8ef8abe71 100644 --- a/quantum/led_matrix.c +++ b/quantum/led_matrix.c @@ -20,7 +20,7 @@ #include #include #include "quantum.h" -#include "led_matrix.h" +#include "ledmatrix.h" #include "progmem.h" #include "config.h" #include "eeprom.h" diff --git a/quantum/led_matrix_drivers.c b/quantum/led_matrix_drivers.c index aeb3bfd55..4ee509ee5 100644 --- a/quantum/led_matrix_drivers.c +++ b/quantum/led_matrix_drivers.c @@ -18,7 +18,7 @@ #include #include #include "quantum.h" -#include "led_matrix.h" +#include "ledmatrix.h" /* Each driver needs to define a struct: * diff --git a/quantum/led_matrix.h b/quantum/ledmatrix.h similarity index 100% rename from quantum/led_matrix.h rename to quantum/ledmatrix.h diff --git a/quantum/quantum.h b/quantum/quantum.h index 169883609..c6acf83e5 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -29,7 +29,7 @@ #include "keymap.h" #ifdef BACKLIGHT_ENABLE #ifdef LED_MATRIX_ENABLE - #include "led_matrix.h" + #include "ledmatrix.h" #else #include "backlight.h" #endif -- 2.39.2