From: Lee Jones Date: Mon, 27 Mar 2017 14:03:40 +0000 (+0100) Subject: serial: st-asc: Change default baudrate from 9600 to 115200 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b5090cb46ee7580f848c2ecc4633ada306840328;p=linux.git serial: st-asc: Change default baudrate from 9600 to 115200 9600 is old school. Most applications use 115200 as the default baud these days. Signed-off-by: Lee Jones Acked-by: Patrice Chotard Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/st-asc.c b/drivers/tty/serial/st-asc.c index 4889396d4c45e..3e99bcc4eba08 100644 --- a/drivers/tty/serial/st-asc.c +++ b/drivers/tty/serial/st-asc.c @@ -916,7 +916,7 @@ static void asc_console_write(struct console *co, const char *s, unsigned count) static int asc_console_setup(struct console *co, char *options) { struct asc_port *ascport; - int baud = 9600; + int baud = 115200; int bits = 8; int parity = 'n'; int flow = 'n';