From: Herton Ronaldo Krzesinski Date: Thu, 31 Mar 2011 18:35:31 +0000 (-0300) Subject: vt: remove uneeded retval check before tty->ops->open inside tty_open X-Git-Tag: v3.0-rc1~338^2~47 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=909bc7741bef0bda57489884cf2e914c3072aca9;p=~shefty%2Frdma-dev.git vt: remove uneeded retval check before tty->ops->open inside tty_open The current check is uneeded, since !retval will always returns true, as retval returned from tty_add_file is checked earlier and tty_open exits if it's not zero. Acked-by: Alan Cox Signed-off-by: Herton Ronaldo Krzesinski Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index d7d50b48287..188632e4734 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -1902,12 +1902,10 @@ got_driver: #ifdef TTY_DEBUG_HANGUP printk(KERN_DEBUG "opening %s...", tty->name); #endif - if (!retval) { - if (tty->ops->open) - retval = tty->ops->open(tty, filp); - else - retval = -ENODEV; - } + if (tty->ops->open) + retval = tty->ops->open(tty, filp); + else + retval = -ENODEV; filp->f_flags = saved_flags; if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&