diff options
author | Ryan <fauxpark@gmail.com> | 2023-03-20 08:12:05 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 08:12:05 +1100 |
commit | 3c144fac5e2b634166f6b9cc0fc45029d63d3398 (patch) | |
tree | c3e408ca9fa27721c19f4fc0ba8b4119798e5dd2 /keyboards/teleport | |
parent | 9d302f9b7fa7fc88766de322a52d1a1be38e723c (diff) |
Clean up usage of `QMK_KEYBOARD_H` (#20167)
Diffstat (limited to 'keyboards/teleport')
-rw-r--r-- | keyboards/teleport/native/ansi/ansi.c | 2 | ||||
-rw-r--r-- | keyboards/teleport/native/iso/iso.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/teleport/native/ansi/ansi.c b/keyboards/teleport/native/ansi/ansi.c index 8b243d8a07..9c4ea99f40 100644 --- a/keyboards/teleport/native/ansi/ansi.c +++ b/keyboards/teleport/native/ansi/ansi.c @@ -14,7 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include QMK_KEYBOARD_H +#include "quantum.h" #ifdef RGB_MATRIX_ENABLE led_config_t g_led_config = { { diff --git a/keyboards/teleport/native/iso/iso.c b/keyboards/teleport/native/iso/iso.c index f3bfbfb3a1..5acbffe8f9 100644 --- a/keyboards/teleport/native/iso/iso.c +++ b/keyboards/teleport/native/iso/iso.c @@ -14,7 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include QMK_KEYBOARD_H +#include "quantum.h" #ifdef RGB_MATRIX_ENABLE led_config_t g_led_config = { { |