All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 7/7] Drivers: tty: synclink_gt: fixed a brace coding style issue
@ 2011-11-18  4:54 Zac Storer
  2011-11-18 16:11 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Zac Storer @ 2011-11-18  4:54 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, Zac Storer

Fixed a brace coding style issue.

Signed-off-by: Zac Storer <zac.3.14159@gmail.com>
---
 drivers/tty/synclink_gt.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/tty/synclink_gt.c b/drivers/tty/synclink_gt.c
index 18b48cd..6ea8c93 100644
--- a/drivers/tty/synclink_gt.c
+++ b/drivers/tty/synclink_gt.c
@@ -675,7 +675,7 @@ static int open(struct tty_struct *tty, struct file *filp)
 	DBGINFO(("%s open, old ref count = %d\n", info->device_name, info->port.count));
 
 	/* If port is closing, signal caller to try again */
-	if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING){
+	if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING) {
 		if (info->port.flags & ASYNC_CLOSING)
 			interruptible_sleep_on(&info->port.close_wait);
 		retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
-- 
1.7.7.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-11-18 16:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-18  4:54 [PATCH 7/7] Drivers: tty: synclink_gt: fixed a brace coding style issue Zac Storer
2011-11-18 16:11 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.