Browse Source

fix the led_matrix.h naming conflict

skullY 6 years ago
parent
commit
c5221fa1cb
4 changed files with 3 additions and 3 deletions
  1. 1 1
      quantum/led_matrix.c
  2. 1 1
      quantum/led_matrix_drivers.c
  3. 0 0
      quantum/ledmatrix.h
  4. 1 1
      quantum/quantum.h

+ 1 - 1
quantum/led_matrix.c

@@ -20,7 +20,7 @@
 #include <stdint.h>
 #include <stdbool.h>
 #include "quantum.h"
-#include "led_matrix.h"
+#include "ledmatrix.h"
 #include "progmem.h"
 #include "config.h"
 #include "eeprom.h"

+ 1 - 1
quantum/led_matrix_drivers.c

@@ -18,7 +18,7 @@
 #include <stdint.h>
 #include <stdbool.h>
 #include "quantum.h"
-#include "led_matrix.h"
+#include "ledmatrix.h"
 
 /* Each driver needs to define a struct:
  *

+ 0 - 0
quantum/led_matrix.h → quantum/ledmatrix.h


+ 1 - 1
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