Commit 149b36ea authored by Alan Cox's avatar Alan Cox Committed by Greg Kroah-Hartman

serial: stop passing NULL to functions that expect data

Earlier patches have removed the checking for old v new differences from the
USB drivers so we can now pass in a valid blank old termios so that we don't
to fill the drivers with magic hacks for console support
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3657f6c0
...@@ -1875,6 +1875,7 @@ uart_set_options(struct uart_port *port, struct console *co, ...@@ -1875,6 +1875,7 @@ uart_set_options(struct uart_port *port, struct console *co,
int baud, int parity, int bits, int flow) int baud, int parity, int bits, int flow)
{ {
struct ktermios termios; struct ktermios termios;
static struct ktermios dummy;
int i; int i;
/* /*
...@@ -1920,7 +1921,7 @@ uart_set_options(struct uart_port *port, struct console *co, ...@@ -1920,7 +1921,7 @@ uart_set_options(struct uart_port *port, struct console *co,
*/ */
port->mctrl |= TIOCM_DTR; port->mctrl |= TIOCM_DTR;
port->ops->set_termios(port, &termios, NULL); port->ops->set_termios(port, &termios, &dummy);
co->cflag = termios.c_cflag; co->cflag = termios.c_cflag;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment