summaryrefslogtreecommitdiff
path: root/keyboards/converter
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-16 03:27:52 +0000
committerQMK Bot <hello@qmk.fm>2020-12-16 03:27:52 +0000
commit2e0f2025bd9f400dd8f5b0cad8ba80667193408d (patch)
tree2e3d0fb98b20bdd4e39b4719abdffe4e29e242e9 /keyboards/converter
parent416dea2c54c885a1d58d6924be6b346c8eb87f47 (diff)
parent9366ed728280f4875ebbba9c0ef1eade03c96d35 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/converter')
-rw-r--r--keyboards/converter/adb_usb/led.h2
-rw-r--r--keyboards/converter/hp_46010a/matrix.c2
-rw-r--r--keyboards/converter/ibm_terminal/led.c2
-rw-r--r--keyboards/converter/siemens_tastatur/matrix.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/converter/adb_usb/led.h b/keyboards/converter/adb_usb/led.h
index 19952fae2a..b33b6894e5 100644
--- a/keyboards/converter/adb_usb/led.h
+++ b/keyboards/converter/adb_usb/led.h
@@ -19,7 +19,7 @@ Ported to QMK by Peter Roe <pete@13bit.me>
#ifndef LED_H
#define LED_H
-#include "stdint.h"
+#include <stdint.h>
/* keyboard LEDs */
diff --git a/keyboards/converter/hp_46010a/matrix.c b/keyboards/converter/hp_46010a/matrix.c
index ac9224087f..72a098746c 100644
--- a/keyboards/converter/hp_46010a/matrix.c
+++ b/keyboards/converter/hp_46010a/matrix.c
@@ -29,7 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "util.h"
#include "matrix.h"
#include "timer.h"
-#include "LUFA/Drivers/Peripheral/SPI.h"
+#include <LUFA/Drivers/Peripheral/SPI.h>
#include "config.h"
diff --git a/keyboards/converter/ibm_terminal/led.c b/keyboards/converter/ibm_terminal/led.c
index e448e84ec7..e0f31ee4e1 100644
--- a/keyboards/converter/ibm_terminal/led.c
+++ b/keyboards/converter/ibm_terminal/led.c
@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdint.h"
+#include <stdint.h>
#include "ps2.h"
#include "led.h"
diff --git a/keyboards/converter/siemens_tastatur/matrix.c b/keyboards/converter/siemens_tastatur/matrix.c
index 9fcfe9fdf4..2da4e33d3d 100644
--- a/keyboards/converter/siemens_tastatur/matrix.c
+++ b/keyboards/converter/siemens_tastatur/matrix.c
@@ -22,8 +22,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "wait.h"
#include "print.h"
#include "matrix.h"
-#include "ch.h"
-#include "hal.h"
+#include <ch.h>
+#include <hal.h>
static matrix_row_t matrix[MATRIX_ROWS];
static matrix_row_t matrix_debouncing[MATRIX_ROWS];