From: Peter Hurley Date: Mon, 2 Dec 2013 19:24:43 +0000 (-0500) Subject: n_tty: Un-inline slow-path n_tty_receive_char_closing() X-Git-Tag: v3.14-rc1~149^2~56 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=8dc4b25d2325002f716fffe2e35c9af43639c60f;p=linux.git n_tty: Un-inline slow-path n_tty_receive_char_closing() Although n_tty_receive_char_closing() only has one call-site, let the compiler inline instead. Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index 8c20a52557ea..582a05c012f0 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c @@ -1442,8 +1442,7 @@ n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c) put_tty_queue(c, ldata); } -static inline void -n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c) +static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c) { if (I_ISTRIP(tty)) c &= 0x7f;