On Tue, Feb 25, 2014 at 9:11 PM, Jingoo Han <[email protected]> wrote:
> Remove unnecessary parentheses in order to fix the following
> checkpatch error.
>
>   ERROR: return is not a function, parentheses are not required
>

Applied, thanks,
-Bryan

> Signed-off-by: Jingoo Han <[email protected]>
> ---
>  drivers/leds/leds-lp5562.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/leds/leds-lp5562.c b/drivers/leds/leds-lp5562.c
> index 315d3ca..ca85724 100644
> --- a/drivers/leds/leds-lp5562.c
> +++ b/drivers/leds/leds-lp5562.c
> @@ -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)
> --
> 1.7.10.4
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-leds" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to