Skip to content

Commit

Permalink
USB: serial: spcp8x5: simplify init_termios
Browse files Browse the repository at this point in the history
Simplify init_termios which is only used to override the initial
baudrate.

Signed-off-by: Johan Hovold <[email protected]>
  • Loading branch information
jhovold committed Apr 26, 2019
1 parent d8a7f23 commit 623c46f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/usb/serial/spcp8x5.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,7 @@ static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)

static void spcp8x5_init_termios(struct tty_struct *tty)
{
tty->termios = tty_std_termios;
tty->termios.c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
tty->termios.c_ispeed = 115200;
tty->termios.c_ospeed = 115200;
tty_encode_baud_rate(tty, 115200, 115200);
}

static void spcp8x5_set_termios(struct tty_struct *tty,
Expand Down

0 comments on commit 623c46f

Please sign in to comment.