Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5bd49735 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ff4783ce
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -679,9 +679,9 @@ 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->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;