Commit d43b54d269d (serial: Enable Freescale 16550 workaround on arm) added a dependency on fsl8250_handle_irq from drivers/tty/serial/of_serial.c, resulting in the following failure when SERIAL_8250_FSL=y and CONFIG_SERIAL_OF_PLATFORM=m: ERROR: "fsl8250_handle_irq" [drivers/tty/serial/of_serial.ko] undefined! This patch exports fsl8250_handle_irq to resolve the failure. Signed-off-by: Jeff Mahoney <jeffm@xxxxxxxx> --- drivers/tty/serial/8250/8250_fsl.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/tty/serial/8250/8250_fsl.c +++ b/drivers/tty/serial/8250/8250_fsl.c @@ -60,3 +60,4 @@ int fsl8250_handle_irq(struct uart_port spin_unlock_irqrestore(&up->port.lock, flags); return 1; } +EXPORT_SYMBOL_GPL(fsl8250_handle_irq); -- Jeff Mahoney SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html