arch: arm: aarch32: rename z_arm_int_lib_init() function

We rename the z_arm_int_lib_init() function to
z_arm_interrupt_init(), aligning to how other
ARCHes name their IRQ initialization function.
There is nothing about 'library' in this
functionality, so we remove the 'lib' in-fix.

The commit does not introduce any behavior changes.

Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
This commit is contained in:
Ioannis Glaropoulos 2020-03-12 13:41:59 +01:00 committed by Andrew Boie
commit d9a6e1d0c0
3 changed files with 4 additions and 4 deletions

View file

@ -36,11 +36,11 @@ extern int arch_irq_is_enabled(unsigned int irq);
extern void z_arm_int_exit(void);
#if defined(CONFIG_ARMV7_R)
static ALWAYS_INLINE void z_arm_int_lib_init(void)
static ALWAYS_INLINE void z_arm_interrupt_init(void)
{
}
#else
extern void z_arm_int_lib_init(void);
extern void z_arm_interrupt_init(void);
#endif
/* macros convert value of it's argument to a string */