[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1407709430-61260-2-git-send-email-ragnar@igo.is>
Date: Sun, 10 Aug 2014 22:23:48 +0000
From: "Ragnar B. Johannsson" <ragnar@....is>
To: forest@...ttletooquiet.net, gregkh@...uxfoundation.org,
tvboxspy@...il.com
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
"Ragnar B. Johannsson" <ragnar@....is>
Subject: [PATCH 1/3] staging: vt6656: remove unnecessary braces
Removes unnecessary braces to comply with coding style.
Signed-off-by: Ragnar B. Johannsson <ragnar@....is>
---
drivers/staging/vt6656/usbpipe.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/vt6656/usbpipe.c b/drivers/staging/vt6656/usbpipe.c
index cba6532..88bf518 100644
--- a/drivers/staging/vt6656/usbpipe.c
+++ b/drivers/staging/vt6656/usbpipe.c
@@ -131,11 +131,10 @@ static void vnt_start_interrupt_urb_complete(struct urb *urb)
}
status = usb_submit_urb(priv->interrupt_urb, GFP_ATOMIC);
- if (status) {
+ if (status)
dev_dbg(&priv->usb->dev, "Submit int URB failed %d\n", status);
- } else {
+ else
priv->int_buf.in_use = true;
- }
}
int vnt_start_interrupt_urb(struct vnt_private *priv)
--
1.9.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists