From: Jiri Slaby (SUSE) Date: Sun, 27 Aug 2023 07:41:43 +0000 (+0200) Subject: tty: n_tty: simplify chars_in_buffer() X-Git-Tag: v6.6.7~2018^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d88c3c2675f9d41c15297fa001e79812f4dcc9dd;p=platform%2Fkernel%2Flinux-starfive.git tty: n_tty: simplify chars_in_buffer() The 'if' in chars_in_buffer() is misleadingly inverted. And since the only difference is the head used for computation, cache the head using ternary operator. And use that in return directly. Signed-off-by: "Jiri Slaby (SUSE)" Link: https://lore.kernel.org/r/20230827074147.2287-11-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index 369f5dd..e722065 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c @@ -219,13 +219,9 @@ static void n_tty_kick_worker(const struct tty_struct *tty) static ssize_t chars_in_buffer(const struct tty_struct *tty) { const struct n_tty_data *ldata = tty->disc_data; - ssize_t n = 0; + size_t head = ldata->icanon ? ldata->canon_head : ldata->commit_head; - if (!ldata->icanon) - n = ldata->commit_head - ldata->read_tail; - else - n = ldata->canon_head - ldata->read_tail; - return n; + return head - ldata->read_tail; } /**