From: Nandini Hanumanthagowda Date: Thu, 17 Oct 2013 18:52:25 +0000 (+0530) Subject: staging: vt6656: removed unnecessary parentheses in return statement X-Git-Tag: firefly_0821_release~176^2~5057^2~199 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5a69f36db385a7f5f8072a7a10656e361f3d3e12;p=firefly-linux-kernel-4.4.55.git staging: vt6656: removed unnecessary parentheses in return statement There was parentheses around return statement's value which was not required since return statement is not a function. Hence removed the parentheses to eliminate the checkpatch error which states: ERROR: return is not a function, parentheses are not required Signed-off-by: Nandini Hanumanthagowda Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6656/firmware.c b/drivers/staging/vt6656/firmware.c index 52d4e964584d..c38c45ed080e 100644 --- a/drivers/staging/vt6656/firmware.c +++ b/drivers/staging/vt6656/firmware.c @@ -109,9 +109,9 @@ int FIRMWAREbBrach2Sram(struct vnt_private *pDevice) 0, NULL); if (NdisStatus != STATUS_SUCCESS) - return (false); + return false; else - return (true); + return true; } int FIRMWAREbCheckVersion(struct vnt_private *pDevice)