From: Joe Perches Date: Mon, 27 Feb 2012 19:12:07 +0000 (-0500) Subject: gigaset: Use semicolons to terminate statements X-Git-Tag: firefly_0821_release~3680^2~3338^2~174 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5bd49735db39c1c1360cb91b1f1e1c999d90eb94;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c index da2486e59102..b826dac7c845 100644 --- a/drivers/isdn/gigaset/interface.c +++ b/drivers/isdn/gigaset/interface.c @@ -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;