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>
This commit is contained in:
Andrew Boie 2017-04-11 11:21:07 -07:00
commit b037d4d54c

View file

@ -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. */