Re: [PATCH 04/18] backlight: ams369fg06: remove 'else' after a return

From: Lee Jones
Date: Tue Aug 26 2014 - 12:36:43 EST


On Tue, 26 Aug 2014, Jingoo Han wrote:

> Fixed the following checkpatch warning.
>
> WARNING: else is not generally useful after a break or return
>
> Signed-off-by: Jingoo Han <jg1.han@xxxxxxxxxxx>
> ---
> drivers/video/backlight/ams369fg06.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)

Acked-by: Lee Jones <lee.jones@xxxxxxxxxx>

> diff --git a/drivers/video/backlight/ams369fg06.c b/drivers/video/backlight/ams369fg06.c
> index 4726c8be626f..5f897f99cc9b 100644
> --- a/drivers/video/backlight/ams369fg06.c
> +++ b/drivers/video/backlight/ams369fg06.c
> @@ -325,11 +325,11 @@ static int ams369fg06_power_on(struct ams369fg06 *lcd)
> if (!pd->reset) {
> dev_err(lcd->dev, "reset is NULL.\n");
> return -EINVAL;
> - } else {
> - pd->reset(lcd->ld);
> - msleep(pd->reset_delay);
> }
>
> + pd->reset(lcd->ld);
> + msleep(pd->reset_delay);
> +
> ret = ams369fg06_ldi_init(lcd);
> if (ret) {
> dev_err(lcd->dev, "failed to initialize ldi.\n");

--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org â Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/