summaryrefslogtreecommitdiffstats
path: root/builddefs/common_features.mk
diff options
context:
space:
mode:
authorIdan Kamara <i@idank.me>2022-02-11 11:36:26 +0200
committerGitHub <noreply@github.com>2022-02-11 20:36:26 +1100
commit793f54f6ca5e844319f7e082b84fb4ca375bd9de (patch)
treef75e26f66eb0c43fb4caf68b7479ab56745b36fc /builddefs/common_features.mk
parent656c151e075d917729aae5e74b73606a44f90678 (diff)
ps2/avr: use the correct file name (#16316)
This was missed in https://github.com/qmk/qmk_firmware/pull/14895. Thanks to fauxpark for spotting this.
Diffstat (limited to 'builddefs/common_features.mk')
-rw-r--r--builddefs/common_features.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/builddefs/common_features.mk b/builddefs/common_features.mk
index 7ff19e8084..db9b580286 100644
--- a/builddefs/common_features.mk
+++ b/builddefs/common_features.mk
@@ -707,7 +707,7 @@ endif
ifeq ($(strip $(PS2_USE_BUSYWAIT)), yes)
PS2_ENABLE := yes
SRC += ps2_busywait.c
- SRC += ps2_io_avr.c
+ SRC += ps2_io.c
OPT_DEFS += -DPS2_USE_BUSYWAIT
endif