Commit fc044ac3 authored by Nandini Hanumanthagowda's avatar Nandini Hanumanthagowda Committed by Greg Kroah-Hartman

staging: vt6656: removal of braces under if-control statement

Removed braces under if-else control flow statement whenever
there is only one statement under if-else control statement
to comply with linux coding style
Signed-off-by: default avatarNandini Hanumanthagowda <nandu.hgowda@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1266ed76
......@@ -108,11 +108,10 @@ int FIRMWAREbBrach2Sram(struct vnt_private *pDevice)
0x0000,
0,
NULL);
if (NdisStatus != STATUS_SUCCESS) {
if (NdisStatus != STATUS_SUCCESS)
return (false);
} else {
else
return (true);
}
}
int FIRMWAREbCheckVersion(struct vnt_private *pDevice)
......
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