From: Jiri Slaby Date: Thu, 29 Jul 2010 09:09:47 +0000 (+0200) Subject: Char: nozomi, fix tty->count counting X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ee78bb95b7bea08b7774a02073ea2bb45611a9e1;p=linux-beck.git Char: nozomi, fix tty->count counting Currently ntty_install omits to increment tty count and we get the following warnings: Warning: dev (noz2) tty->count(0) != #fd's(1) in tty_open So to fix that, add one tty->count++ there. Signed-off-by: Jiri Slaby Cc: Alan Cox Cc: stable [.34, .35] Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/nozomi.c b/drivers/char/nozomi.c index a6638003f530..21ae1b158b3b 100644 --- a/drivers/char/nozomi.c +++ b/drivers/char/nozomi.c @@ -1611,6 +1611,7 @@ static int ntty_install(struct tty_driver *driver, struct tty_struct *tty) ret = tty_init_termios(tty); if (ret == 0) { tty_driver_kref_get(driver); + tty->count++; driver->ttys[tty->index] = tty; } return ret;