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

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

commit dbbcd7c88ce1360e11773299657097fb39121c0a
Author: chenxiaoyi <[email protected]>
AuthorDate: Mon Sep 22 20:27:36 2025 +0800

    arch/xtensa: remove the use of XCHAL_SYSCALL_LEVEL
    
    After PR#14672, there is no use of XCHAL_SYSCALL_LEVEL.
    
    Signed-off-by: chenxiaoyi <[email protected]>
---
 arch/xtensa/include/xtensa/core.h | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/arch/xtensa/include/xtensa/core.h 
b/arch/xtensa/include/xtensa/core.h
index b3c4281683c..144745af9a4 100644
--- a/arch/xtensa/include/xtensa/core.h
+++ b/arch/xtensa/include/xtensa/core.h
@@ -76,11 +76,7 @@
 /* Interrupts ***************************************************************/
 
 /* Indexing macros: */
-#ifndef XCHAL_SYSCALL_LEVEL
-#  define XCHAL_IRQ_LEVEL  XCHAL_EXCM_LEVEL
-#else
-#  define XCHAL_IRQ_LEVEL  XCHAL_SYSCALL_LEVEL
-#endif
+#define XCHAL_IRQ_LEVEL                 XCHAL_EXCM_LEVEL
 
 #define _XCHAL_INTLEVEL_MASK(n)         XCHAL_INTLEVEL ## n ## _MASK
 #define XCHAL_INTLEVEL_MASK(n)          _XCHAL_INTLEVEL_MASK(n) /* n = 0 .. 15 
*/

Reply via email to