Browse Source

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 <lee.jones@linaro.org>
Acked-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Lee Jones 8 years ago
parent
commit
b5090cb46e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/tty/serial/st-asc.c

+ 1 - 1
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)
 static int asc_console_setup(struct console *co, char *options)
 {
 {
 	struct asc_port *ascport;
 	struct asc_port *ascport;
-	int baud = 9600;
+	int baud = 115200;
 	int bits = 8;
 	int bits = 8;
 	int parity = 'n';
 	int parity = 'n';
 	int flow = 'n';
 	int flow = 'n';