[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1437138274-23146-1-git-send-email-antoine.blin@lip6.fr>
Date: Fri, 17 Jul 2015 15:04:33 +0200
From: Antoine BLIN <antoine.blin@...6.fr>
To: sudipm.mukherjee@...il.com
Cc: teddy.wang@...iconmotion.com, gregkh@...uxfoundation.org,
linux-fbdev@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org, Antoine BLIN <antoine.blin@...6.fr>
Subject: [PATCH 1/2] staging: sm750fb: ddk750_power.c: Remove optionnal parentheses.
Fix up "return is not a function, parentheses are not required" error found by
the checkpatch.pl script.
Signed-off-by: Antoine BLIN <antoine.blin@...6.fr>
---
drivers/staging/sm750fb/ddk750_power.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/sm750fb/ddk750_power.c b/drivers/staging/sm750fb/ddk750_power.c
index c8c51be..3c04447 100644
--- a/drivers/staging/sm750fb/ddk750_power.c
+++ b/drivers/staging/sm750fb/ddk750_power.c
@@ -20,7 +20,7 @@ unsigned int getPowerMode(void)
{
if (getChipType() == SM750LE)
return 0;
- return (FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE));
+ return FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE);
}
--
2.4.5
--
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