diff options
author | Ryan <fauxpark@gmail.com> | 2021-06-03 16:26:41 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 16:26:41 +1000 |
commit | 261d94ce344e28a13bf01444e467cc7c68c27282 (patch) | |
tree | 2998ae78f02e4e55b3b448fa55b8f2f7b8c4a72e /drivers/chibios | |
parent | a0cc2dc6d0b4fafc9f7d70b98254e32d032c3f17 (diff) | |
download | qmk_firmware-261d94ce344e28a13bf01444e467cc7c68c27282.tar.gz qmk_firmware-261d94ce344e28a13bf01444e467cc7c68c27282.zip |
Tidy up spi_master includes (#13053)
Diffstat (limited to 'drivers/chibios')
-rw-r--r-- | drivers/chibios/spi_master.c | 2 | ||||
-rw-r--r-- | drivers/chibios/spi_master.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/chibios/spi_master.c b/drivers/chibios/spi_master.c index 8341b59a5..4852a6eba 100644 --- a/drivers/chibios/spi_master.c +++ b/drivers/chibios/spi_master.c | |||
@@ -15,7 +15,7 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "spi_master.h" | 17 | #include "spi_master.h" |
18 | #include "quantum.h" | 18 | |
19 | #include "timer.h" | 19 | #include "timer.h" |
20 | 20 | ||
21 | static pin_t currentSlavePin = NO_PIN; | 21 | static pin_t currentSlavePin = NO_PIN; |
diff --git a/drivers/chibios/spi_master.h b/drivers/chibios/spi_master.h index 5953bef77..e93580e31 100644 --- a/drivers/chibios/spi_master.h +++ b/drivers/chibios/spi_master.h | |||
@@ -18,7 +18,9 @@ | |||
18 | 18 | ||
19 | #include <ch.h> | 19 | #include <ch.h> |
20 | #include <hal.h> | 20 | #include <hal.h> |
21 | #include "quantum.h" | 21 | #include <stdbool.h> |
22 | |||
23 | #include "gpio.h" | ||
22 | 24 | ||
23 | #ifndef SPI_DRIVER | 25 | #ifndef SPI_DRIVER |
24 | # define SPI_DRIVER SPID2 | 26 | # define SPI_DRIVER SPID2 |