Skip to content

Commit

Permalink
fix the led_matrix.h naming conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed committed Feb 10, 2019
1 parent 5fc2421 commit c5221fa
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quantum/led_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion quantum/led_matrix_drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
*
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion quantum/quantum.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5221fa

Please sign in to comment.