diff options
| author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-16 14:27:23 +1100 |
| commit | 9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch) | |
| tree | 93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/converter | |
| parent | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff) | |
| download | qmk_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.h | 2 | ||||
| -rw-r--r-- | keyboards/converter/hp_46010a/matrix.c | 2 | ||||
| -rw-r--r-- | keyboards/converter/ibm_terminal/led.c | 2 | ||||
| -rw-r--r-- | keyboards/converter/siemens_tastatur/matrix.c | 4 |
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 | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along 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 | ||
| 28 | static matrix_row_t matrix[MATRIX_ROWS]; | 28 | static matrix_row_t matrix[MATRIX_ROWS]; |
| 29 | static matrix_row_t matrix_debouncing[MATRIX_ROWS]; | 29 | static matrix_row_t matrix_debouncing[MATRIX_ROWS]; |
