summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/chibios/serial_usart.c2
-rw-r--r--drivers/qwiic/micro_oled.c2
-rw-r--r--keyboards/moonlander/matrix.c4
-rw-r--r--keyboards/planck/ez/ez.c4
-rw-r--r--quantum/audio/voices.c2
-rw-r--r--tmk_core/common/led.h4
-rw-r--r--tmk_core/protocol/chibios/lufa_utils/LUFA/Drivers/USB/USB.h4
-rw-r--r--tmk_core/protocol/chibios/main.c2
8 files changed, 12 insertions, 12 deletions
diff --git a/drivers/chibios/serial_usart.c b/drivers/chibios/serial_usart.c
index ded78410e1..a3e21f90bc 100644
--- a/drivers/chibios/serial_usart.c
+++ b/drivers/chibios/serial_usart.c
@@ -1,6 +1,6 @@
#include "quantum.h"
#include "serial.h"
-#include "printf.h"
+#include "print.h"
#include <ch.h>
#include <hal.h>
diff --git a/drivers/qwiic/micro_oled.c b/drivers/qwiic/micro_oled.c
index f63cf2e643..c7a4ee081d 100644
--- a/drivers/qwiic/micro_oled.c
+++ b/drivers/qwiic/micro_oled.c
@@ -32,7 +32,7 @@
#include <stdlib.h>
#include "util/font5x7.h"
#include "util/font8x16.h"
-#include "string.h"
+#include <string.h>
#define TOTALFONTS 2
const unsigned char* fonts_pointer[] = {font5x7, font8x16};
diff --git a/keyboards/moonlander/matrix.c b/keyboards/moonlander/matrix.c
index 8daebd6973..84156a989f 100644
--- a/keyboards/moonlander/matrix.c
+++ b/keyboards/moonlander/matrix.c
@@ -18,10 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
-#include "hal.h"
+#include <hal.h>
#include "timer.h"
#include "wait.h"
-#include "printf.h"
+#include "print.h"
#include "matrix.h"
#include "action.h"
#include "keycode.h"
diff --git a/keyboards/planck/ez/ez.c b/keyboards/planck/ez/ez.c
index 34f13235fe..b4f3d811ef 100644
--- a/keyboards/planck/ez/ez.c
+++ b/keyboards/planck/ez/ez.c
@@ -14,8 +14,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ez.h"
-#include "ch.h"
-#include "hal.h"
+#include <ch.h>
+#include <hal.h>
keyboard_config_t keyboard_config;
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c
index 53a65e4e37..1592618be4 100644
--- a/quantum/audio/voices.c
+++ b/quantum/audio/voices.c
@@ -15,7 +15,7 @@
*/
#include "voices.h"
#include "audio.h"
-#include "stdlib.h"
+#include <stdlib.h>
// these are imported from audio.c
extern uint16_t envelope_index;
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h
index 0bf87c8af5..f9b2229c36 100644
--- a/tmk_core/common/led.h
+++ b/tmk_core/common/led.h
@@ -17,8 +17,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
-#include "stdint.h"
-#include "stdbool.h"
+#include <stdint.h>
+#include <stdbool.h>
/* FIXME: Add doxygen comments here. */
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