diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-11 13:45:24 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 13:45:24 +1100 |
commit | 501f2fdef115314713e94428d409e5c3b5bfc1c2 (patch) | |
tree | e454192658ed0000d1d814e2eab492410febe98f /quantum/audio | |
parent | 5b5d74a2677c281d12cd69825d2e252842786667 (diff) |
Normalise include statements in core code (#11153)
* Normalise include statements in core code
* Missed one
Diffstat (limited to 'quantum/audio')
-rw-r--r-- | quantum/audio/audio_chibios.c | 4 | ||||
-rw-r--r-- | quantum/audio/luts.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/quantum/audio/audio_chibios.c b/quantum/audio/audio_chibios.c index fba7c59873..1f147f2c92 100644 --- a/quantum/audio/audio_chibios.c +++ b/quantum/audio/audio_chibios.c @@ -15,8 +15,8 @@ */ #include "audio.h" -#include "ch.h" -#include "hal.h" +#include <ch.h> +#include <hal.h> #include <string.h> #include "print.h" diff --git a/quantum/audio/luts.h b/quantum/audio/luts.h index 117d74cd00..6fdd3b4635 100644 --- a/quantum/audio/luts.h +++ b/quantum/audio/luts.h @@ -19,8 +19,8 @@ # include <avr/interrupt.h> # include <avr/pgmspace.h> #else -# include "ch.h" -# include "hal.h" +# include <ch.h> +# include <hal.h> #endif #ifndef LUTS_H |