On Sat, 2013-03-02 at 16:02 +0100, Peter Ujfalusi wrote: > > diff --git a/sound/soc/omap/omap3pandora.c b/sound/soc/omap/omap3pandora.c > > index 805512f..953483e 100644 > > --- a/sound/soc/omap/omap3pandora.c > > +++ b/sound/soc/omap/omap3pandora.c > > @@ -85,7 +85,11 @@ static int omap3pandora_dac_event(struct snd_soc_dapm_widget *w, > > * VCC power on/off and /PD pin high/low > > */ > > if (SND_SOC_DAPM_EVENT_ON(event)) { > > - regulator_enable(omap3pandora_dac_reg); > > + ret = regulator_enable(omap3pandora_dac_reg); > > + if (ret != 0) { > > The rest of this machine driver uses "if (ret < 0)" or "if (ret)". I would use: > + if (ret) { > ... > Otherwise: > Acked-by: Peter Ujfalusi <peter.ujfalusi@xxxxxx> > To whatever version of (ret != 0), (ret) or (ret < 0) is used :-) Acked-by: Jarkko Nikula <jarkko.nikula@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html