Commit 9d7a0ffe authored by Aaron Ouellette's avatar Aaron Ouellette Committed by Greg Kroah-Hartman

staging: sm750fb: removed extra parentheses

fixed checkpatch.pl error:
ERROR: return is not a function, parentheses are not needed
Signed-off-by: default avatarAaron Ouellette <aouellette2016@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d5a372df
...@@ -20,7 +20,7 @@ unsigned int getPowerMode(void) ...@@ -20,7 +20,7 @@ unsigned int getPowerMode(void)
{ {
if (getChipType() == SM750LE) if (getChipType() == SM750LE)
return 0; return 0;
return (FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE)); return FIELD_GET(PEEK32(POWER_MODE_CTRL), POWER_MODE_CTRL, MODE);
} }
......
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