kernel: renamespace arch_nop()

This is part of the core kernel -> architecture interface
and has been renamed to z_arch_nop().

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2019-09-21 16:03:22 -07:00 committed by Anas Nashif
commit 845aa6d114
9 changed files with 9 additions and 9 deletions

View file

@ -204,7 +204,7 @@ extern u32_t z_timer_cycle_get_32(void);
/**
* @brief Explicitly nop operation.
*/
static ALWAYS_INLINE void arch_nop(void)
static ALWAYS_INLINE void z_arch_nop(void)
{
__asm__ volatile("nop");
}