[alsa-devel] [PATCH] ASoC: omap: Check regulator enable for DAC on Pandora

Jarkko Nikula jarkko.nikula at bitmer.com
Sun Mar 3 10:11:50 CET 2013


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 at ti.com>
> 
To whatever version of (ret != 0), (ret) or (ret < 0) is used :-)

Acked-by: Jarkko Nikula <jarkko.nikula at bitmer.com>



More information about the Alsa-devel mailing list