misc/kernel_event_logger.h: prototype irq entry point

Missing from the header, likely due to other arches always calling
this from ASM-land.

Change-Id: Id90e0269a4f9e17b78c48eb7df3b6cde08c53d2a
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2016-06-29 16:28:14 -07:00 committed by Inaky Perez-Gonzalez
commit 59169052c6

View file

@ -351,6 +351,12 @@ void _sys_k_event_logger_enter_sleep(void);
static inline void _sys_k_event_logger_enter_sleep(void) {};
#endif
#ifdef CONFIG_KERNEL_EVENT_LOGGER_INTERRUPT
void _sys_k_event_logger_interrupt(void);
#else
static inline void _sys_k_event_logger_interrupt(void) {};
#endif
#endif /* _ASMLANGUAGE */
#else /* !CONFIG_KERNEL_EVENT_LOGGER */