diff options
| author | Markus Elfring <elfring@users.sourceforge.net> | 2014-11-21 07:42:29 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-26 22:35:49 -0500 |
| commit | a211b1af1933a3b6019d985762f5237d1d4c4213 (patch) | |
| tree | 7783a3eaf3c3550754f95e5b9019995cb77838ca | |
| parent | 8bfbe2de769afda051c56aba5450391670e769fc (diff) | |
tty: Deletion of unnecessary checks before two function calls
The functions put_device() and tty_kref_put() test whether their argument
is NULL and then return immediately.
Thus the test around the call is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/tty/tty_io.c | 6 | ||||
| -rw-r--r-- | drivers/tty/tty_port.c | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index 705885891b87..4f35b43e2475 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c | |||
| @@ -167,8 +167,7 @@ void free_tty_struct(struct tty_struct *tty) | |||
| 167 | { | 167 | { |
| 168 | if (!tty) | 168 | if (!tty) |
| 169 | return; | 169 | return; |
| 170 | if (tty->dev) | 170 | put_device(tty->dev); |
| 171 | put_device(tty->dev); | ||
| 172 | kfree(tty->write_buf); | 171 | kfree(tty->write_buf); |
| 173 | tty->magic = 0xDEADDEAD; | 172 | tty->magic = 0xDEADDEAD; |
| 174 | kfree(tty); | 173 | kfree(tty); |
| @@ -1688,8 +1687,7 @@ static void release_tty(struct tty_struct *tty, int idx) | |||
| 1688 | tty->link->port->itty = NULL; | 1687 | tty->link->port->itty = NULL; |
| 1689 | cancel_work_sync(&tty->port->buf.work); | 1688 | cancel_work_sync(&tty->port->buf.work); |
| 1690 | 1689 | ||
| 1691 | if (tty->link) | 1690 | tty_kref_put(tty->link); |
| 1692 | tty_kref_put(tty->link); | ||
| 1693 | tty_kref_put(tty); | 1691 | tty_kref_put(tty); |
| 1694 | } | 1692 | } |
| 1695 | 1693 | ||
diff --git a/drivers/tty/tty_port.c b/drivers/tty/tty_port.c index 4d9abaa81be4..40b31835f80b 100644 --- a/drivers/tty/tty_port.c +++ b/drivers/tty/tty_port.c | |||
| @@ -193,8 +193,7 @@ void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty) | |||
| 193 | unsigned long flags; | 193 | unsigned long flags; |
| 194 | 194 | ||
| 195 | spin_lock_irqsave(&port->lock, flags); | 195 | spin_lock_irqsave(&port->lock, flags); |
| 196 | if (port->tty) | 196 | tty_kref_put(port->tty); |
| 197 | tty_kref_put(port->tty); | ||
| 198 | port->tty = tty_kref_get(tty); | 197 | port->tty = tty_kref_get(tty); |
| 199 | spin_unlock_irqrestore(&port->lock, flags); | 198 | spin_unlock_irqrestore(&port->lock, flags); |
| 200 | } | 199 | } |
