On Thu, Oct 17, 2013 at 05:02:12PM +0200, Denis Carikli wrote:
> +     if (imxpd->lcd_reg)
> +             if (regulator_enable(imxpd->lcd_reg))
> +                     dev_err(imxpd->dev, "Failed to enable lcd 
> regulator.\n");
> +

In staging the style is to use braces around multi-line indents for
readability.  Or you could do:

        if (imxpd->lcd_reg && regulator_enable(imxpd->lcd_reg))
                dev_err(imxpd->dev, "Failed to enable lcd regulator.\n");

These kind of tiny things aren't worth resending, but for next time.

regards,
dan carpenter


--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to