[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1443986358-21947-1-git-send-email-guillaume1.gomez@gmail.com>
Date: Sun, 4 Oct 2015 21:19:18 +0200
From: Guillaume Gomez <guillaume1.gomez@...il.com>
To: gregkh@...uxfoundation.org, jslaby@...e.com
Cc: guillaume1.gomez@...il.com, linux-kernel@...r.kernel.org
Subject: [PATCH 1/1] tty: remove unneeded return statement
Signed-off-by: Guillaume Gomez <guillaume1.gomez@...il.com>
---
drivers/tty/tty_ldisc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/tty/tty_ldisc.c b/drivers/tty/tty_ldisc.c
index 71750cb..5af8f18 100644
--- a/drivers/tty/tty_ldisc.c
+++ b/drivers/tty/tty_ldisc.c
@@ -319,7 +319,7 @@ __tty_ldisc_lock_nested(struct tty_struct *tty, unsigned long timeout)
static inline void __tty_ldisc_unlock(struct tty_struct *tty)
{
- return ldsem_up_write(&tty->ldisc_sem);
+ ldsem_up_write(&tty->ldisc_sem);
}
static int __lockfunc
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists