diff mbox series

media: atmel: atmel-isc: remove unneeded IS_ERR()

Message ID 20220519065234.127978-1-guozhengkui@vivo.com (mailing list archive)
State New, archived
Headers show
Series media: atmel: atmel-isc: remove unneeded IS_ERR() | expand

Commit Message

Guo Zhengkui May 19, 2022, 6:52 a.m. UTC
There has already been error check in clk_unregister(), so remove error
check before calling clk_unregister().

Signed-off-by: Guo Zhengkui <guozhengkui@vivo.com>
---
 drivers/media/platform/atmel/atmel-isc-clk.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Hans Verkuil June 9, 2022, 9:27 a.m. UTC | #1
Hi Guo Zhengkui,

On 5/19/22 08:52, Guo Zhengkui wrote:
> There has already been error check in clk_unregister(), so remove error
> check before calling clk_unregister().
> 
> Signed-off-by: Guo Zhengkui <guozhengkui@vivo.com>
> ---
>  drivers/media/platform/atmel/atmel-isc-clk.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/media/platform/atmel/atmel-isc-clk.c b/drivers/media/platform/atmel/atmel-isc-clk.c
> index 2059fe376b00..9decd8fb03d5 100644
> --- a/drivers/media/platform/atmel/atmel-isc-clk.c
> +++ b/drivers/media/platform/atmel/atmel-isc-clk.c
> @@ -304,8 +304,7 @@ void isc_clk_cleanup(struct isc_device *isc)
>  	for (i = 0; i < ARRAY_SIZE(isc->isc_clks); i++) {
>  		struct isc_clk *isc_clk = &isc->isc_clks[i];
>  
> -		if (!IS_ERR(isc_clk->clk))
> -			clk_unregister(isc_clk->clk);
> +		clk_unregister(isc_clk->clk);

Actually, clk_unregister does this:

        if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
                return;

So if IS_ERR(clk) is true, then a warning will be issued, and that's not what you want.

I'm rejecting this patch.

Regards,

	Hans


>  	}
>  }
>  EXPORT_SYMBOL_GPL(isc_clk_cleanup);
diff mbox series

Patch

diff --git a/drivers/media/platform/atmel/atmel-isc-clk.c b/drivers/media/platform/atmel/atmel-isc-clk.c
index 2059fe376b00..9decd8fb03d5 100644
--- a/drivers/media/platform/atmel/atmel-isc-clk.c
+++ b/drivers/media/platform/atmel/atmel-isc-clk.c
@@ -304,8 +304,7 @@  void isc_clk_cleanup(struct isc_device *isc)
 	for (i = 0; i < ARRAY_SIZE(isc->isc_clks); i++) {
 		struct isc_clk *isc_clk = &isc->isc_clks[i];
 
-		if (!IS_ERR(isc_clk->clk))
-			clk_unregister(isc_clk->clk);
+		clk_unregister(isc_clk->clk);
 	}
 }
 EXPORT_SYMBOL_GPL(isc_clk_cleanup);