diff options
| author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-16 14:27:23 +1100 |
| commit | 9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch) | |
| tree | 93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/lfkeyboards | |
| parent | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff) | |
| download | qmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.tar.gz qmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.zip | |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'keyboards/lfkeyboards')
| -rw-r--r-- | keyboards/lfkeyboards/TWIlib.c | 2 | ||||
| -rw-r--r-- | keyboards/lfkeyboards/lfk78/lfk78.c | 2 | ||||
| -rw-r--r-- | keyboards/lfkeyboards/lighting.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/lfkeyboards/TWIlib.c b/keyboards/lfkeyboards/TWIlib.c index dc4fbf016..d50ce7289 100644 --- a/keyboards/lfkeyboards/TWIlib.c +++ b/keyboards/lfkeyboards/TWIlib.c | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include <avr/io.h> | 8 | #include <avr/io.h> |
| 9 | #include <avr/interrupt.h> | 9 | #include <avr/interrupt.h> |
| 10 | #include "TWIlib.h" | 10 | #include "TWIlib.h" |
| 11 | #include "util/delay.h" | 11 | #include <util/delay.h> |
| 12 | #include "print.h" | 12 | #include "print.h" |
| 13 | 13 | ||
| 14 | // Global transmit buffer | 14 | // Global transmit buffer |
diff --git a/keyboards/lfkeyboards/lfk78/lfk78.c b/keyboards/lfkeyboards/lfk78/lfk78.c index cf49a5cfd..5b283f979 100644 --- a/keyboards/lfkeyboards/lfk78/lfk78.c +++ b/keyboards/lfkeyboards/lfk78/lfk78.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | #include <avr/timer_avr.h> | 3 | #include <avr/timer_avr.h> |
| 4 | #include <avr/wdt.h> | 4 | #include <avr/wdt.h> |
| 5 | #include <audio/audio.h> | 5 | #include "audio.h" |
| 6 | #include "issi.h" | 6 | #include "issi.h" |
| 7 | #include "TWIlib.h" | 7 | #include "TWIlib.h" |
| 8 | #include "lighting.h" | 8 | #include "lighting.h" |
diff --git a/keyboards/lfkeyboards/lighting.c b/keyboards/lfkeyboards/lighting.c index 2a6eac929..dcc5c4023 100644 --- a/keyboards/lfkeyboards/lighting.c +++ b/keyboards/lfkeyboards/lighting.c | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | #include "lighting.h" | 11 | #include "lighting.h" |
| 12 | #include "debug.h" | 12 | #include "debug.h" |
| 13 | #include "rgblight.h" | 13 | #include "rgblight.h" |
| 14 | #include "audio/audio.h" | 14 | #include "audio.h" |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | extern rgblight_config_t rgblight_config; // Declared in rgblight.c | 17 | extern rgblight_config_t rgblight_config; // Declared in rgblight.c |
