aboutsummaryrefslogtreecommitdiff
path: root/keyboards/converter
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-16 14:27:23 +1100
committerGitHub <noreply@github.com>2020-12-16 14:27:23 +1100
commit9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch)
tree93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/converter
parent37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff)
downloadqmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.tar.gz
qmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.zip
Normalise include statements in keyboard code (#11185)
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 19952fae2..b33b6894e 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>
19 19
20#ifndef LED_H 20#ifndef LED_H
21#define LED_H 21#define LED_H
22#include "stdint.h" 22#include <stdint.h>
23 23
24 24
25/* keyboard LEDs */ 25/* keyboard LEDs */
diff --git a/keyboards/converter/hp_46010a/matrix.c b/keyboards/converter/hp_46010a/matrix.c
index ac9224087..72a098746 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/>.
29#include "util.h" 29#include "util.h"
30#include "matrix.h" 30#include "matrix.h"
31#include "timer.h" 31#include "timer.h"
32#include "LUFA/Drivers/Peripheral/SPI.h" 32#include <LUFA/Drivers/Peripheral/SPI.h>
33 33
34#include "config.h" 34#include "config.h"
35 35
diff --git a/keyboards/converter/ibm_terminal/led.c b/keyboards/converter/ibm_terminal/led.c
index e448e84ec..e0f31ee4e 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
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18#include "stdint.h" 18#include <stdint.h>
19#include "ps2.h" 19#include "ps2.h"
20#include "led.h" 20#include "led.h"
21 21
diff --git a/keyboards/converter/siemens_tastatur/matrix.c b/keyboards/converter/siemens_tastatur/matrix.c
index 9fcfe9fdf..2da4e33d3 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/>.
22#include "wait.h" 22#include "wait.h"
23#include "print.h" 23#include "print.h"
24#include "matrix.h" 24#include "matrix.h"
25#include "ch.h" 25#include <ch.h>
26#include "hal.h" 26#include <hal.h>
27 27
28static matrix_row_t matrix[MATRIX_ROWS]; 28static matrix_row_t matrix[MATRIX_ROWS];
29static matrix_row_t matrix_debouncing[MATRIX_ROWS]; 29static matrix_row_t matrix_debouncing[MATRIX_ROWS];