Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754185Ab2B0Rjb (ORCPT ); Mon, 27 Feb 2012 12:39:31 -0500 Received: from perches-mx.perches.com ([206.117.179.246]:46160 "EHLO labridge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753839Ab2B0Rj3 (ORCPT ); Mon, 27 Feb 2012 12:39:29 -0500 Message-ID: <1330364367.9942.21.camel@joe2Laptop> Subject: [PATCH net-next] gigaset: Use semicolons to terminate statements From: Joe Perches To: Jiri Slaby , netdev , Karsten Keil Cc: Jiri Slaby , LKML , Hansjoerg Lipp , Tilman Schmidt , gigaset307x-common@lists.sourceforge.net, David Miller Date: Mon, 27 Feb 2012 09:39:27 -0800 In-Reply-To: <1330363627.9942.16.camel@joe2Laptop> References: <4F4B45F6.4090706@suse.cz> <1330361549.9942.7.camel@joe2Laptop> <4F4BB983.8020608@suse.cz> <1330363627.9942.16.camel@joe2Laptop> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.2- Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1094 Lines: 31 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 --- 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 linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/