power: remove SYS_ and sys_ prefixes

Remove SYS_ and sys_ from all PM related functions and defines.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-09-01 21:46:30 -04:00
commit e0f3833bf7
45 changed files with 270 additions and 270 deletions

View file

@ -235,10 +235,10 @@ typedef struct s_isrList {
#ifdef CONFIG_PM
/*
* FIXME: z_sys_power_save_idle_exit is defined in kernel.h, which cannot be
* FIXME: z_pm_save_idle_exit is defined in kernel.h, which cannot be
* included here due to circular dependency
*/
extern void z_sys_power_save_idle_exit(int32_t ticks);
extern void z_pm_save_idle_exit(int32_t ticks);
static inline void arch_irq_direct_pm(void)
{
@ -246,7 +246,7 @@ static inline void arch_irq_direct_pm(void)
int32_t idle_val = _kernel.idle;
_kernel.idle = 0;
z_sys_power_save_idle_exit(idle_val);
z_pm_save_idle_exit(idle_val);
}
}