Skip to content

Commit 11b6c33

Browse files
inochisalupyuen
authored andcommitted
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: 5f70307 ("arch/risc-v: introduce AIA support") Signed-off-by: Inochi Amaoto <[email protected]>
1 parent 107cd52 commit 11b6c33

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

arch/risc-v/src/common/Make.defs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ CMN_ASRCS += riscv_vpu.S
104104
endif
105105

106106
ifeq ($(CONFIG_ARCH_RV_HAVE_APLIC),y)
107-
CMN_CSRCS += riscv_aia.c
107+
CMN_CSRCS += riscv_aplic.c
108+
endif
109+
110+
ifeq ($(CONFIG_ARCH_RV_HAVE_IMSIC),y)
111+
CMN_CSRCS += riscv_imsic.c
108112
endif
109113

110114
ifeq ($(CONFIG_RISCV_SEMIHOSTING_HOSTFS),y)

0 commit comments

Comments
 (0)