From: Ilpo Järvinen Date: Thu, 9 Mar 2023 08:20:34 +0000 (+0200) Subject: n_tty: Reindent if condition X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=37e8b08ada22f5cd4a8e94f6e783d00cd6e6d7e6;p=linux.git n_tty: Reindent if condition Align if condition to make it easier to read. Signed-off-by: Ilpo Järvinen Link: https://lore.kernel.org/r/20230309082035.14880-8-ilpo.jarvinen@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index 0481e57077f1a..1c9e5d2ea7de6 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c @@ -1176,7 +1176,7 @@ static void n_tty_receive_overrun(struct tty_struct *tty) ldata->num_overrun++; if (time_after(jiffies, ldata->overrun_time + HZ) || - time_after(ldata->overrun_time, jiffies)) { + time_after(ldata->overrun_time, jiffies)) { tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun); ldata->overrun_time = jiffies; ldata->num_overrun = 0;