summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ced1401
diff options
context:
space:
mode:
authorDevendra Naga2012-10-22 17:49:28 +0200
committerGreg Kroah-Hartman2012-10-22 22:28:13 +0200
commit0965be39641589a66fd0ea5745d11a11ed0d3335 (patch)
tree697ee81d9eb08dacd394a4ce3ccb9ec8a964cf8e /drivers/staging/ced1401
parentstaging: ced1401: remove an obvious commit about the minor number (diff)
downloadkernel-qcow2-linux-0965be39641589a66fd0ea5745d11a11ed0d3335.tar.gz
kernel-qcow2-linux-0965be39641589a66fd0ea5745d11a11ed0d3335.tar.xz
kernel-qcow2-linux-0965be39641589a66fd0ea5745d11a11ed0d3335.zip
staging: ced1401: fix some style warnings
this fixes: comments to in kernel comment style the opening brace of if statement must be beside the if not below to it Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ced1401')
-rw-r--r--drivers/staging/ced1401/usb1401.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/ced1401/usb1401.c b/drivers/staging/ced1401/usb1401.c
index 6000861d20ad..226b893c3123 100644
--- a/drivers/staging/ced1401/usb1401.c
+++ b/drivers/staging/ced1401/usb1401.c
@@ -1572,8 +1572,7 @@ void ced_draw_down(DEVICE_EXTENSION * pdx)
pdx->bInDrawDown = true;
time = usb_wait_anchor_empty_timeout(&pdx->submitted, 3000);
- if (!time) // if we timed out we kill the urbs
- {
+ if (!time) { // if we timed out we kill the urbs
usb_kill_anchored_urbs(&pdx->submitted);
dev_err(&pdx->interface->dev, "%s timed out", __func__);
}