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:
parent
b0b320b7dd
commit
d9a6e1d0c0
3 changed files with 4 additions and 4 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue