Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

backlight: lp855x: remove unnecessary parentheses

Remove unnecessary parentheses in order to fix the following checkpatch
error.

ERROR: return is not a function, parentheses are not required

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jingoo Han and committed by
Linus Torvalds
2ce23860 81f5cdc1

+1 -1
+1 -1
drivers/video/backlight/lp855x_bl.c
··· 125 125 return false; 126 126 } 127 127 128 - return (addr >= start && addr <= end); 128 + return addr >= start && addr <= end; 129 129 } 130 130 131 131 static int lp8557_bl_off(struct lp855x *lp)