summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2017-04-11 11:21:07 -0700
committerAndrew Boie <andrew.p.boie@intel.com>2017-04-12 16:31:46 +0000
commitb037d4d54c905e17b4f0db34ae59792177cbc925 (patch)
tree5b4dab62a517f98432e1e5858c4deceafdb4b698
parent06dc2f203fa2a5fad3a5d7ce32bff7d16d9442a7 (diff)
xtensa: fix tickless idle build
_power_save_idle_exit() was removed long ago. All arches now just call _sys_power_save_idle_exit() if PM is enabled. Change-Id: I9cce3eecc8cbf1cbce15a355be420e747fb978de Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
-rw-r--r--arch/xtensa/core/xtensa_vectors.S5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/xtensa/core/xtensa_vectors.S b/arch/xtensa/core/xtensa_vectors.S
index 150c1f27f..7b48c73b2 100644
--- a/arch/xtensa/core/xtensa_vectors.S
+++ b/arch/xtensa/core/xtensa_vectors.S
@@ -130,7 +130,6 @@
*/
.extern _kernel
.extern _sys_power_save_idle_exit
- .extern _power_save_idle_exit
.macro dispatch_c_isr level mask
@@ -198,9 +197,6 @@
#endif
#ifdef CONFIG_SYS_POWER_MANAGEMENT
-#if defined(CONFIG_TICKLESS_IDLE)
- call0 _power_save_idle_exit
-#else
movi a3, _kernel
#ifdef __XTENSA_CALL0_ABI__
mov a12, a2
@@ -218,7 +214,6 @@
call4 _sys_power_save_idle_exit
#endif /* __XTENSA_CALL0_ABI__ */
10:
-#endif /* defined(CONFIG_TICKLESS_IDLE) */
#endif /* CONFIG_SYS_POWER_MANAGEMENT */
/* Now look up in the dispatch table and call user ISR if any. */