]> git.karo-electronics.de Git - linux-beck.git/commitdiff
tty/serial: atmel_serial: remove dev_dbg in atmel_set_termios
authorNicolas Ferre <nicolas.ferre@atmel.com>
Wed, 22 Jan 2014 09:38:52 +0000 (10:38 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Feb 2014 18:18:48 +0000 (10:18 -0800)
This fixes a driver bug which stopped the whole system (in case
of serial console).
This log message is not useful anyway as this information is
printed elsewhere.

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/atmel_serial.c

index a49f10d269b20afb2e8d2a1579af8f8987ed2a16..3d7206fc532fda418c21944342a58ee62a432f3d 100644 (file)
@@ -1853,13 +1853,10 @@ static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
        mode &= ~ATMEL_US_USMODE;
 
        if (atmel_port->rs485.flags & SER_RS485_ENABLED) {
-               dev_dbg(port->dev, "Setting UART to RS485\n");
                if ((atmel_port->rs485.delay_rts_after_send) > 0)
                        UART_PUT_TTGR(port,
                                        atmel_port->rs485.delay_rts_after_send);
                mode |= ATMEL_US_USMODE_RS485;
-       } else {
-               dev_dbg(port->dev, "Setting UART to RS232\n");
        }
 
        /* set the parity, stop bits and data size */