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.
pull/16292/head
Idan Kamara 2022-02-11 11:36:26 +02:00 committed by GitHub
parent 656c151e07
commit 793f54f6ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ endif
ifeq ($(strip $(PS2_USE_BUSYWAIT)), yes) ifeq ($(strip $(PS2_USE_BUSYWAIT)), yes)
PS2_ENABLE := yes PS2_ENABLE := yes
SRC += ps2_busywait.c SRC += ps2_busywait.c
SRC += ps2_io_avr.c SRC += ps2_io.c
OPT_DEFS += -DPS2_USE_BUSYWAIT OPT_DEFS += -DPS2_USE_BUSYWAIT
endif endif