diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-01-12 22:46:08 -0800 |
commit | 664f5de68767ebb07417be0f7ca69c030cc10c37 (patch) | |
tree | 16dac5ab878e975ab9312b4429b77aa56ace25fd /tmk_core/protocol | |
parent | a0eb53cb163a85d805e67217d34e2a1ba936e788 (diff) |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r-- | tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h | 4 | ||||
-rw-r--r-- | tmk_core/protocol/chibios/main.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h b/tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h index f59c8d1dda..22f882cbb8 100644 --- a/tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h +++ b/tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h @@ -1,6 +1,6 @@ #include "progmem.h" -#include "stddef.h" -#include "inttypes.h" +#include <stddef.h> +#include <inttypes.h> #define ATTR_PACKED __attribute__((packed)) /** Concatenates the given input into a single token, via the C Preprocessor. diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index aaadefd8d2..5c27a8c6a0 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -31,7 +31,7 @@ #include "led.h" #include "sendchar.h" #include "debug.h" -#include "printf.h" +#include "print.h" #ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP // Change this to be TRUE once we've migrated keyboards to the new init system |