mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
serial: core: Fix Coding Style
This patch fixes the following checkpatch error and warning: 1. space required after ',' 2. Missing a blank line after declarations Signed-off-by: Tamseel Shams <m.shams@samsung.com> Link: https://lore.kernel.org/r/20200716115438.9967-1-m.shams@samsung.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
82ee0b147c
commit
4ed71addf5
1 changed files with 3 additions and 1 deletions
|
@ -1121,7 +1121,7 @@ out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int uart_do_autoconfig(struct tty_struct *tty,struct uart_state *state)
|
static int uart_do_autoconfig(struct tty_struct *tty, struct uart_state *state)
|
||||||
{
|
{
|
||||||
struct tty_port *port = &state->port;
|
struct tty_port *port = &state->port;
|
||||||
struct uart_port *uport;
|
struct uart_port *uport;
|
||||||
|
@ -1524,6 +1524,7 @@ static void uart_set_termios(struct tty_struct *tty,
|
||||||
/* Handle transition away from B0 status */
|
/* Handle transition away from B0 status */
|
||||||
else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
|
else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
|
||||||
unsigned int mask = TIOCM_DTR;
|
unsigned int mask = TIOCM_DTR;
|
||||||
|
|
||||||
if (!(cflag & CRTSCTS) || !tty_throttled(tty))
|
if (!(cflag & CRTSCTS) || !tty_throttled(tty))
|
||||||
mask |= TIOCM_RTS;
|
mask |= TIOCM_RTS;
|
||||||
uart_set_mctrl(uport, mask);
|
uart_set_mctrl(uport, mask);
|
||||||
|
@ -2280,6 +2281,7 @@ int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
|
||||||
if (console_suspend_enabled || !uart_console(uport)) {
|
if (console_suspend_enabled || !uart_console(uport)) {
|
||||||
/* Protected by port mutex for now */
|
/* Protected by port mutex for now */
|
||||||
struct tty_struct *tty = port->tty;
|
struct tty_struct *tty = port->tty;
|
||||||
|
|
||||||
ret = ops->startup(uport);
|
ret = ops->startup(uport);
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
if (tty)
|
if (tty)
|
||||||
|
|
Loading…
Add table
Reference in a new issue