summaryrefslogtreecommitdiff
path: root/drivers/chibios/ws2812.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-11 13:45:24 +1100
committerDrashna Jael're <drashna@live.com>2021-01-12 22:46:07 -0800
commit8d5fa95f4fa9b283daff1e1f7bd7003e2970e223 (patch)
tree8758a2049b0d08cc8c71347f73a4ddc898473ffa /drivers/chibios/ws2812.c
parent63d0fe05bbbb1ad8b0a5af90bccba48d6f06f2bb (diff)
Normalise include statements in core code (#11153)
* Normalise include statements in core code * Missed one
Diffstat (limited to 'drivers/chibios/ws2812.c')
-rw-r--r--drivers/chibios/ws2812.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/chibios/ws2812.c b/drivers/chibios/ws2812.c
index b5b02fdacd..4f32e27d22 100644
--- a/drivers/chibios/ws2812.c
+++ b/drivers/chibios/ws2812.c
@@ -1,7 +1,7 @@
#include "quantum.h"
#include "ws2812.h"
-#include "ch.h"
-#include "hal.h"
+#include <ch.h>
+#include <hal.h>
/* Adapted from https://github.com/bigjosh/SimpleNeoPixelDemo/ */