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:
Andrew Boie 2019-09-30 12:31:07 -07:00 committed by Ioannis Glaropoulos
commit 8c98a97581
51 changed files with 332 additions and 329 deletions

View file

@ -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)