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 <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Peter Hurley 2013-12-02 14:24:43 -05:00 committed by Greg Kroah-Hartman
parent eb3e4668bd
commit 8dc4b25d23

View File

@ -1442,8 +1442,7 @@ n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
put_tty_queue(c, ldata); put_tty_queue(c, ldata);
} }
static inline void static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
{ {
if (I_ISTRIP(tty)) if (I_ISTRIP(tty))
c &= 0x7f; c &= 0x7f;