From a220766d573f9ad7f57ccecde703d237c5f2f946 Mon Sep 17 00:00:00 2001 From: Abdelatif Guettouche Date: Wed, 18 Aug 2021 11:35:29 +0200 Subject: [PATCH] xtensa.h: Remove unused function prototype. ESP32 uses a different function to start the app CPU and no other xtensa CPU uses this __cpu1_start function. Signed-off-by: Abdelatif Guettouche --- arch/xtensa/src/common/xtensa.h | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/xtensa/src/common/xtensa.h b/arch/xtensa/src/common/xtensa.h index 4e2bc49f83..6afc97f0d8 100644 --- a/arch/xtensa/src/common/xtensa.h +++ b/arch/xtensa/src/common/xtensa.h @@ -265,7 +265,6 @@ uint32_t *xtensa_user(int exccause, uint32_t *regs); /* Software interrupt handler */ #ifdef CONFIG_SMP -void __cpu1_start(void) noreturn_function; int xtensa_intercpu_interrupt(int tocpu, int intcode); void xtensa_pause_handler(void); #endif