Browse Source

Staging: fwserial: wrap a line that exceeds 80 characters

This is a patch to fwserial.c that wraps a line which previously exceeded the 80
character limit warning found by checkpatch.pl.  This driver is now warning and
error free, according to checkpatch.pl

Signed-off-by: Jon Bernard <jbernard@tuxion.com>
Reviewed-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jon Bernard 12 years ago
parent
commit
9502e2b4dd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/staging/fwserial/fwserial.c

+ 2 - 1
drivers/staging/fwserial/fwserial.c

@@ -2394,7 +2394,8 @@ static int fwserial_create(struct fw_unit *unit)
 
 
 	list_del_rcu(&serial->list);
 	list_del_rcu(&serial->list);
 	if (create_loop_dev)
 	if (create_loop_dev)
-		tty_unregister_device(fwloop_driver, loop_idx(serial->ports[j]));
+		tty_unregister_device(fwloop_driver,
+				      loop_idx(serial->ports[j]));
 unregister_ttys:
 unregister_ttys:
 	for (--j; j >= 0; --j)
 	for (--j; j >= 0; --j)
 		tty_unregister_device(fwtty_driver, serial->ports[j]->index);
 		tty_unregister_device(fwtty_driver, serial->ports[j]->index);