diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2007-08-23 00:06:48 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 23:55:20 +0200 |
commit | c4e41562e09961df6ba72b49269793d21c0034dc (patch) | |
tree | 40e725dcc4a1e0a38cd3864ecb213f0544057869 /drivers/usb/serial/cp2101.c | |
parent | USB: avoid the donelist after an error in ohci-hcd (diff) | |
download | linux-c4e41562e09961df6ba72b49269793d21c0034dc.tar.xz linux-c4e41562e09961df6ba72b49269793d21c0034dc.zip |
USB: cp2101: Coding style police
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/cp2101.c')
-rw-r--r-- | drivers/usb/serial/cp2101.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/cp2101.c b/drivers/usb/serial/cp2101.c index 33f6ee50b8d3..883625126d6b 100644 --- a/drivers/usb/serial/cp2101.c +++ b/drivers/usb/serial/cp2101.c @@ -521,7 +521,7 @@ static void cp2101_set_termios (struct usb_serial_port *port, dbg("%s - port %d", __FUNCTION__, port->number); - if ((!port->tty) || (!port->tty->termios)) { + if (!port->tty || !port->tty->termios) { dbg("%s - no tty structures", __FUNCTION__); return; } |