arm: arch code naming cleanup
This patch re-namespaces global variables and functions that are used only within the arch/arm/ code to be prefixed with z_arm_. Some instances of CamelCase have been corrected. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
4bca0f3d33
commit
8c98a97581
51 changed files with 332 additions and 329 deletions
|
@ -8,7 +8,7 @@
|
|||
#include <spinlock.h>
|
||||
#include <arch/arm/cortex_m/cmsis.h>
|
||||
|
||||
void z_ExcExit(void);
|
||||
void z_arm_exc_exit(void);
|
||||
|
||||
#define COUNTER_MAX 0x00ffffff
|
||||
#define TIMER_STOPPED 0xff000000
|
||||
|
@ -96,7 +96,7 @@ void z_clock_isr(void *arg)
|
|||
overflow_cyc = 0U;
|
||||
|
||||
z_clock_announce(TICKLESS ? dticks : 1);
|
||||
z_ExcExit();
|
||||
z_arm_exc_exit();
|
||||
}
|
||||
|
||||
int z_clock_driver_init(struct device *device)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue