leds: lp5562: 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: Bryan Wu <cooloney@gmail.com>
This commit is contained in:
parent
a6a83218d7
commit
432eb69dd8
|
@ -346,9 +346,9 @@ static void lp5562_write_program_memory(struct lp55xx_chip *chip,
|
|||
/* check the size of program count */
|
||||
static inline bool _is_pc_overflow(struct lp55xx_predef_pattern *ptn)
|
||||
{
|
||||
return (ptn->size_r >= LP5562_PROGRAM_LENGTH ||
|
||||
ptn->size_g >= LP5562_PROGRAM_LENGTH ||
|
||||
ptn->size_b >= LP5562_PROGRAM_LENGTH);
|
||||
return ptn->size_r >= LP5562_PROGRAM_LENGTH ||
|
||||
ptn->size_g >= LP5562_PROGRAM_LENGTH ||
|
||||
ptn->size_b >= LP5562_PROGRAM_LENGTH;
|
||||
}
|
||||
|
||||
static int lp5562_run_predef_led_pattern(struct lp55xx_chip *chip, int mode)
|
||||
|
|
Loading…
Reference in New Issue