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: Nandini Hanumanthagowda <nandu.hgowda@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nandini Hanumanthagowda 2013-10-18 00:22:24 +05:30 committed by Greg Kroah-Hartman
parent 1266ed7633
commit fc044ac39c

View file

@ -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)