[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20200805135544.GA1014704@chromium.org>
Date: Wed, 5 Aug 2020 13:55:44 +0000
From: Tomasz Figa <tfiga@...omium.org>
To: Xia Jiang <xia.jiang@...iatek.com>
Cc: Hans Verkuil <hverkuil-cisco@...all.nl>,
Mauro Carvalho Chehab <mchehab+samsung@...nel.org>,
Rob Herring <robh+dt@...nel.org>,
Matthias Brugger <matthias.bgg@...il.com>,
Rick Chang <rick.chang@...iatek.com>,
linux-media@...r.kernel.org, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-mediatek@...ts.infradead.org,
Marek Szyprowski <m.szyprowski@...sung.com>,
srv_heupstream@...iatek.com, senozhatsky@...omium.org,
mojahsu@...omium.org, drinkcat@...omium.org,
maoguang.meng@...iatek.com
Subject: Re: [PATCH v11 22/28] media: platform: Change the call functions of
getting/enable/disable the jpeg's clock
Hi Xia,
On Tue, Aug 04, 2020 at 11:40:56AM +0800, Xia Jiang wrote:
> Use the generic clk_bulk_* helpers to enable and disable clocks.
>
> Signed-off-by: Xia Jiang <xia.jiang@...iatek.com>
> ---
> v11: specify the names of the clocks in the driver
> ---
> .../media/platform/mtk-jpeg/mtk_jpeg_core.c | 28 +++++++++++++------
> .../media/platform/mtk-jpeg/mtk_jpeg_core.h | 8 +++---
> 2 files changed, 23 insertions(+), 13 deletions(-)
>
Thank you for the patch. It looks good to me.
Reviewed-by: Tomasz Figa <tfiga@...omium.org>
One comment below about a thing that should be fixed in the future,
separately from this series.
> diff --git a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
> index 7881e9c93df7..47d570f32e3f 100644
> --- a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
> +++ b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
> @@ -783,14 +783,15 @@ static void mtk_jpeg_clk_on(struct mtk_jpeg_dev *jpeg)
> ret = mtk_smi_larb_get(jpeg->larb);
> if (ret)
> dev_err(jpeg->dev, "mtk_smi_larb_get larbvdec fail %d\n", ret);
> - clk_prepare_enable(jpeg->clk_jdec_smi);
> - clk_prepare_enable(jpeg->clk_jdec);
> +
> + ret = clk_bulk_prepare_enable(jpeg->num_clks, jpeg->clks);
> + if (ret)
> + dev_err(jpeg->dev, "Failed to open jpeg clk: %d\n", ret);
The errors in this function should be propagated to the caller and
handled properly across the whole call stack.
Best regards,
Tomasz
Powered by blists - more mailing lists