arch/risc-v: Fix wrong source name in make script

AIA releted source files in the Make.defs are not right.
Replace them with the right source.

Fixes: 5f70307111 ("arch/risc-v: introduce AIA support")
Signed-off-by: Inochi Amaoto <inochiama@gmail.com>
This commit is contained in:
Inochi Amaoto 2025-03-18 20:15:37 +08:00 committed by Lup Yuen Lee
parent 107cd52442
commit 11b6c33e94

View file

@ -104,7 +104,11 @@ CMN_ASRCS += riscv_vpu.S
endif
ifeq ($(CONFIG_ARCH_RV_HAVE_APLIC),y)
CMN_CSRCS += riscv_aia.c
CMN_CSRCS += riscv_aplic.c
endif
ifeq ($(CONFIG_ARCH_RV_HAVE_IMSIC),y)
CMN_CSRCS += riscv_imsic.c
endif
ifeq ($(CONFIG_RISCV_SEMIHOSTING_HOSTFS),y)