diff options
author | Idan Kamara <i@idank.me> | 2022-02-11 11:36:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 20:36:26 +1100 |
commit | 793f54f6ca5e844319f7e082b84fb4ca375bd9de (patch) | |
tree | f75e26f66eb0c43fb4caf68b7479ab56745b36fc /builddefs | |
parent | 656c151e075d917729aae5e74b73606a44f90678 (diff) | |
download | qmk_firmware-793f54f6ca5e844319f7e082b84fb4ca375bd9de.tar.gz qmk_firmware-793f54f6ca5e844319f7e082b84fb4ca375bd9de.zip |
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')
-rw-r--r-- | builddefs/common_features.mk | 2 |
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 |