diff options
author | Shaun Silk <g0del@bigpond.com> | 2011-09-25 21:26:43 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-09-26 18:49:42 -0400 |
commit | 5023829969f56b78a16da94f34c605bbbb344018 (patch) | |
tree | 6aef085f6483c2100d688ddba2bf663d6f90388e /drivers/usb/gadget/u_serial.c | |
parent | 2093c6b49c8f1dc581d8953aca71297d4cace55e (diff) |
USB: gadget: u_serial.c: fixed a brace coding style issue
Signed-off-by: Shaun Silk <g0del@bigpond.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/u_serial.c')
-rw-r--r-- | drivers/usb/gadget/u_serial.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/gadget/u_serial.c b/drivers/usb/gadget/u_serial.c index a8aa46962d81..3a4a664bab44 100644 --- a/drivers/usb/gadget/u_serial.c +++ b/drivers/usb/gadget/u_serial.c | |||
@@ -552,9 +552,8 @@ recycle: | |||
552 | /* Push from tty to ldisc; without low_latency set this is handled by | 552 | /* Push from tty to ldisc; without low_latency set this is handled by |
553 | * a workqueue, so we won't get callbacks and can hold port_lock | 553 | * a workqueue, so we won't get callbacks and can hold port_lock |
554 | */ | 554 | */ |
555 | if (tty && do_push) { | 555 | if (tty && do_push) |
556 | tty_flip_buffer_push(tty); | 556 | tty_flip_buffer_push(tty); |
557 | } | ||
558 | 557 | ||
559 | 558 | ||
560 | /* We want our data queue to become empty ASAP, keeping data | 559 | /* We want our data queue to become empty ASAP, keeping data |