[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200619085138.GA7780@pflmari>
Date: Fri, 19 Jun 2020 10:51:38 +0200
From: Alex Riesen <alexander.riesen@...itec.com>
To: Kieran Bingham <kieran.bingham+renesas@...asonboard.com>
Cc: Geert Uytterhoeven <geert@...ux-m68k.org>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
Hans Verkuil <hverkuil-cisco@...all.nl>,
Laurent Pinchart <laurent.pinchart@...asonboard.com>,
Rob Herring <robh+dt@...nel.org>,
Mark Rutland <mark.rutland@....com>,
Kuninori Morimoto <kuninori.morimoto.gx@...esas.com>,
devel@...verdev.osuosl.org, linux-media@...r.kernel.org,
linux-kernel@...r.kernel.org, devicetree@...r.kernel.org,
linux-renesas-soc@...r.kernel.org
Subject: Re: [PATCH v5 6/9] media: adv748x: prepare/enable mclk when the
audio is used
Kieran Bingham, Thu, Jun 18, 2020 18:23:14 +0200:
> On 02/04/2020 19:34, Alex Riesen wrote:
> > --- a/drivers/media/i2c/adv748x/adv748x-dai.c
> > +++ b/drivers/media/i2c/adv748x/adv748x-dai.c
> > @@ -117,11 +117,22 @@ static int adv748x_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
> >
> > static int adv748x_dai_startup(struct snd_pcm_substream *sub, struct snd_soc_dai *dai)
> > {
> > + int ret;
> > struct adv748x_state *state = state_of(dai);
> >
> > if (sub->stream != SNDRV_PCM_STREAM_CAPTURE)
> > return -EINVAL;
> this looks quite bunched up so :
>
> Newline...
Will do.
> > - return set_audio_pads_state(state, 1);
> > + ret = set_audio_pads_state(state, 1);
> > + if (ret)
> > + goto fail;
>
> With no action required to cleanup here, I would just
> return ret;
> and remove the fail: label.
Of course.
> > + ret = clk_prepare_enable(mclk_of(state));
> > + if (ret)
> > + goto fail_pwdn;
>
> newline...
>
> > + return 0;
>
> newline...
>
> Other than that:
>
> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@...asonboard.com>
Thanks!
Powered by blists - more mailing lists