From: Leilei Zhao Date: Fri, 27 Feb 2015 08:07:17 +0000 (+0800) Subject: tty/serial: at91: set ops in property init each time X-Git-Tag: v4.1-rc1~61^2~77^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4d9628a1486658b83e47ad4c7ff07ff1ff0d3d89;p=karo-tx-linux.git tty/serial: at91: set ops in property init each time The property in device tree will be reading each time when tty is opened, so the ops of serial port should be set after that instead of setting once in probe. Otherwise, the ops of serial port is inconsistent with the state of serial work manner. For example, the atmel serial driver can't work when switching to PIO mode due to DMA channel is not available. Signed-off-by: Leilei Zhao Acked-by: Nicolas Ferre Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c index a9b268841bb8..8fac877bc3d4 100644 --- a/drivers/tty/serial/atmel_serial.c +++ b/drivers/tty/serial/atmel_serial.c @@ -1759,6 +1759,7 @@ static int atmel_startup(struct uart_port *port) * Initialize DMA (if necessary) */ atmel_init_property(atmel_port, pdev); + atmel_set_ops(port); if (atmel_port->prepare_rx) { retval = atmel_port->prepare_rx(port);