[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1330364367.9942.21.camel@joe2Laptop>
Date: Mon, 27 Feb 2012 09:39:27 -0800
From: Joe Perches <joe@...ches.com>
To: Jiri Slaby <jslaby@...e.cz>, netdev <netdev@...r.kernel.org>,
Karsten Keil <isdn@...ux-pingi.de>
Cc: Jiri Slaby <jirislaby@...il.com>,
LKML <linux-kernel@...r.kernel.org>,
Hansjoerg Lipp <hjlipp@....de>,
Tilman Schmidt <tilman@...p.cc>,
gigaset307x-common@...ts.sourceforge.net,
David Miller <davem@...emloft.net>
Subject: [PATCH net-next] gigaset: Use semicolons to terminate statements
Commas are not generally used at locations where
statement termination semicolons are used.
Realign each field set at appropriate indentation.
Signed-off-by: Joe Perches <joe@...ches.com>
---
diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c
index da2486e..91f99e4 100644
@@ -679,10 +679,10 @@ void gigaset_if_initdriver(struct gigaset_driver *drv, const char *procname,
if (tty == NULL)
goto enomem;
- tty->magic = TTY_DRIVER_MAGIC,
- tty->type = TTY_DRIVER_TYPE_SERIAL,
- tty->subtype = SERIAL_TYPE_NORMAL,
- tty->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
+ tty->magic = TTY_DRIVER_MAGIC;
+ tty->type = TTY_DRIVER_TYPE_SERIAL;
+ tty->subtype = SERIAL_TYPE_NORMAL;
+ tty->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
tty->driver_name = procname;
tty->name = devname;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists