dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Jeffrin Jose 2012-05-20 00:56:58 +05:30 committed by Greg Kroah-Hartman
parent 81df2d5943
commit 4d4847b850
1 changed files with 1 additions and 1 deletions

View 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 */