serial_console: Use dynamic irq connect
Follow common practice and use standard dynamic irq connect mechanism. Change-Id: Ibb29858da77909ede1fe2dacb056274e49687473 Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
parent
bc9c8846f7
commit
5831c25d93
2 changed files with 0 additions and 8 deletions
|
@ -58,10 +58,6 @@ extern void _irq_spurious(void *arg);
|
|||
_IsrTableEntry_t __isr_table_section _sw_isr_table[CONFIG_NUM_IRQS] = {
|
||||
[0 ...(CONFIG_NUM_IRQS - 1)].arg = (void *)0xABAD1DEA,
|
||||
[0 ...(CONFIG_NUM_IRQS - 1)].isr = _irq_spurious,
|
||||
#if defined(CONFIG_CONSOLE_HANDLER)
|
||||
[CONFIG_UART_CONSOLE_IRQ].arg = NULL,
|
||||
[CONFIG_UART_CONSOLE_IRQ].isr = uart_console_isr,
|
||||
#endif
|
||||
};
|
||||
|
||||
#else
|
||||
|
|
|
@ -58,10 +58,6 @@ extern void _irq_spurious(void *arg);
|
|||
_IsrTableEntry_t __isr_table_section _sw_isr_table[CONFIG_NUM_IRQS] = {
|
||||
[0 ...(CONFIG_NUM_IRQS - 1)].arg = (void *)0xABAD1DEA,
|
||||
[0 ...(CONFIG_NUM_IRQS - 1)].isr = _irq_spurious,
|
||||
#if defined(CONFIG_CONSOLE_HANDLER)
|
||||
[CONFIG_UART_CONSOLE_IRQ].arg = NULL,
|
||||
[CONFIG_UART_CONSOLE_IRQ].isr = uart_console_isr,
|
||||
#endif
|
||||
};
|
||||
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue