summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chip/mchp/uart.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/chip/mchp/uart.c b/chip/mchp/uart.c
index c38ab33aea..adeea5a31c 100644
--- a/chip/mchp/uart.c
+++ b/chip/mchp/uart.c
@@ -113,7 +113,8 @@ void uart_enable_interrupt(void)
}
/**
- * Interrupt handler for UART
+ * Interrupt handler for UART.
+ * Lower priority below other critical ISR's.
*/
void uart_ec_interrupt(void)
{
@@ -122,7 +123,7 @@ void uart_ec_interrupt(void)
/* Trace statement to provide time marker for UART output? */
uart_process_output();
}
-DECLARE_IRQ(MCHP_IRQ_UART0, uart_ec_interrupt, 1);
+DECLARE_IRQ(MCHP_IRQ_UART0, uart_ec_interrupt, 2);
void uart_init(void)
{