Commit 86140346 authored by Ragnar B. Johannsson's avatar Ragnar B. Johannsson Committed by Greg Kroah-Hartman

staging: vt6656: remove unnecessary braces

Removes unnecessary braces to comply with coding style.
Signed-off-by: default avatarRagnar B. Johannsson <ragnar@igo.is>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 80f598ae
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment