From 793f54f6ca5e844319f7e082b84fb4ca375bd9de Mon Sep 17 00:00:00 2001 From: Idan Kamara Date: Fri, 11 Feb 2022 11:36:26 +0200 Subject: [PATCH] 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. --- builddefs/common_features.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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