浏览代码

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.
Idan Kamara 3 年之前
父节点
当前提交
793f54f6ca
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      builddefs/common_features.mk

+ 1 - 1
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