You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/04/02 11:08:49 UTC

[incubator-nuttx] 03/06: arch/riscv: Remove riscv_sbi.c since it doesn't exist

This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 79aca28bd7ee1a5d095dab24bedf6765c12e2fae
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat Apr 2 05:13:55 2022 +0800

    arch/riscv: Remove riscv_sbi.c since it doesn't exist
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 arch/risc-v/src/common/supervisor/Make.defs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/risc-v/src/common/supervisor/Make.defs b/arch/risc-v/src/common/supervisor/Make.defs
index 21b4278..e3125b0 100644
--- a/arch/risc-v/src/common/supervisor/Make.defs
+++ b/arch/risc-v/src/common/supervisor/Make.defs
@@ -21,7 +21,7 @@
 # If the NuttX kernel runs in S-mode
 
 CMN_ASRCS += riscv_dispatch_syscall.S
-CMN_CSRCS += riscv_sbi.c riscv_perform_syscall.c
+CMN_CSRCS += riscv_perform_syscall.c
 CMN_CSRCS += riscv_percpu.c
 
 INCLUDES += ${shell $(INCDIR) "$(CC)" $(ARCH_SRCDIR)$(DELIM)common$(DELIM)supervisor}