usb: early: fixed coding style issue related to : operator
authorJeffrin Jose <ahiliation@yahoo.co.in>
Sat, 19 May 2012 19:26:58 +0000 (00:56 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Jun 2012 23:07:22 +0000 (16:07 -0700)
Fixed a space issue relating to ":" operator found
by checkpatch.pl tool in drivers/usb/early/ehci-dbgp.c

Signed-off-by: Jeffrin Jose <ahiliation@yahoo.co.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/early/ehci-dbgp.c

index 1fc8f1249806ab964645b5395e2f2d099a80a757..ee0ebacf8227df070dc4a40daf8cd873007ca296 100644 (file)
@@ -334,7 +334,7 @@ static int dbgp_control_msg(unsigned devnum, int requesttype,
        int ret;
 
        read = (requesttype & USB_DIR_IN) != 0;
-       if (size > (read ? DBGP_MAX_PACKET:0))
+       if (size > (read ? DBGP_MAX_PACKET : 0))
                return -1;
 
        /* Compute the control message */