summaryrefslogtreecommitdiff
path: root/drivers/console/uart_pipe.c
diff options
context:
space:
mode:
authorJuan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>2015-11-30 11:21:13 -0600
committerAnas Nashif <anas.nashif@intel.com>2016-02-05 20:24:57 -0500
commitbc1a79c4c369ae4d787d5ac885cf739961a662cb (patch)
treeacbace14acf0dcc85cf807953901296a99449c8d /drivers/console/uart_pipe.c
parent4d7181b76218309f892de3150be2e2510c6beaa8 (diff)
irq: removes priority parameter from IRQ_CONFIG macro
Removes the 'priority' parameter from the IRQ_CONFIG macro. This parameter was not used anymore in any architecture. The priority is handled in the IRQ_CONNECT macro. The documentation is updated as well. Change-Id: I24a293c5e41bd729d5e759113e0c4a8a6a61e0dd Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
Diffstat (limited to 'drivers/console/uart_pipe.c')
-rw-r--r--drivers/console/uart_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/console/uart_pipe.c b/drivers/console/uart_pipe.c
index b03eb6c5d..2102ce5d4 100644
--- a/drivers/console/uart_pipe.c
+++ b/drivers/console/uart_pipe.c
@@ -80,7 +80,7 @@ static void uart_pipe_setup(struct device *uart)
{
uart_irq_rx_disable(uart);
uart_irq_tx_disable(uart);
- IRQ_CONFIG(uart_pipe, uart_irq_get(uart), 0);
+ IRQ_CONFIG(uart_pipe, uart_irq_get(uart));
irq_enable(uart_irq_get(uart));
/* Drain the fifo */