aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorJeffrin Jose <ahiliation@yahoo.co.in>2012-05-19 15:26:58 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-06-13 19:07:22 -0400
commit4d4847b8502ec093864936a4669318675c0ced22 (patch)
tree62dde07732c1b19f92b31fae1d5ed197b459dd6a /drivers/usb
parent81df2d594340dcb6d1a02191976be88a1ca8120c (diff)
usb: early: fixed coding style issue related to : operator
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>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/early/ehci-dbgp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/early/ehci-dbgp.c b/drivers/usb/early/ehci-dbgp.c
index 1fc8f1249806..ee0ebacf8227 100644
--- a/drivers/usb/early/ehci-dbgp.c
+++ b/drivers/usb/early/ehci-dbgp.c
@@ -334,7 +334,7 @@ static int dbgp_control_msg(unsigned devnum, int requesttype,
334 int ret; 334 int ret;
335 335
336 read = (requesttype & USB_DIR_IN) != 0; 336 read = (requesttype & USB_DIR_IN) != 0;
337 if (size > (read ? DBGP_MAX_PACKET:0)) 337 if (size > (read ? DBGP_MAX_PACKET : 0))
338 return -1; 338 return -1;
339 339
340 /* Compute the control message */ 340 /* Compute the control message */