powerpc/5200: Don't specify IRQF_SHARED in PSC UART driver
authorGrant Likely <grant.likely@secretlab.ca>
Wed, 4 Feb 2009 18:23:56 +0000 (11:23 -0700)
committerGrant Likely <grant.likely@secretlab.ca>
Wed, 4 Feb 2009 18:23:56 +0000 (11:23 -0700)
The MPC5200 PSC device is wired up to a dedicated interrupt line
which is never shared.  This patch removes the IRQF_SHARED flag
from the request_irq() call which eliminates the "IRQF_DISABLED
is not guaranteed on shared IRQs" warning message from the console
output.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Reviewed-by: Wolfram Sang <w.sang@pengutronix.de>
drivers/serial/mpc52xx_uart.c

index d73d7da3f304f919305a7af507e798035ac496d6..7f72f8ceaa6f0ace5bbfac731662999081b4ebc5 100644 (file)
@@ -522,7 +522,7 @@ mpc52xx_uart_startup(struct uart_port *port)
 
        /* Request IRQ */
        ret = request_irq(port->irq, mpc52xx_uart_int,
-               IRQF_DISABLED | IRQF_SAMPLE_RANDOM | IRQF_SHARED,
+               IRQF_DISABLED | IRQF_SAMPLE_RANDOM,
                "mpc52xx_psc_uart", port);
        if (ret)
                return ret;
This page took 0.0247 seconds and 5 git commands to generate.