From: Ilpo Järvinen Date: Tue, 16 Aug 2022 11:57:33 +0000 (+0300) Subject: tty: Fix comment style in tty_termios_input_baud_rate() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=292e2e7a639dad2392e5af5281d1f48f05dde10d;p=linux.git tty: Fix comment style in tty_termios_input_baud_rate() Add proper spacing to comment. Reviewed-by: Andy Shevchenko Signed-off-by: Ilpo Järvinen Link: https://lore.kernel.org/r/20220816115739.10928-3-ilpo.jarvinen@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty_baudrate.c b/drivers/tty/tty_baudrate.c index 4e3fd756dfc7a..f9b49939c27b6 100644 --- a/drivers/tty/tty_baudrate.c +++ b/drivers/tty/tty_baudrate.c @@ -92,7 +92,7 @@ speed_t tty_termios_input_baud_rate(const struct ktermios *termios) if (cbaud == B0) return tty_termios_baud_rate(termios); - /* Magic token for arbitrary speed via c_ispeed*/ + /* Magic token for arbitrary speed via c_ispeed */ if (cbaud == BOTHER) return termios->c_ispeed;