Re: [PATCH 13/18] backlight: s6e63m0: remove 'else' after a return

From: Lee Jones
Date: Tue Aug 26 2014 - 12:31:28 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/s6e63m0.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)

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

> diff --git a/drivers/video/backlight/s6e63m0.c b/drivers/video/backlight/s6e63m0.c
> index f3a65c8940ed..28bfa127fee4 100644
> --- a/drivers/video/backlight/s6e63m0.c
> +++ b/drivers/video/backlight/s6e63m0.c
> @@ -507,19 +507,19 @@ static int s6e63m0_power_on(struct s6e63m0 *lcd)
> if (!pd->power_on) {
> dev_err(lcd->dev, "power_on is NULL.\n");
> return -EINVAL;
> - } else {
> - pd->power_on(lcd->ld, 1);
> - msleep(pd->power_on_delay);
> }
>
> + pd->power_on(lcd->ld, 1);
> + msleep(pd->power_on_delay);
> +
> 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 = s6e63m0_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/