* [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq()
@ 2022-11-04 7:45 Yang Li
2022-11-07 9:24 ` Corentin LABBE
2022-11-11 10:17 ` Herbert Xu
0 siblings, 2 replies; 3+ messages in thread
From: Yang Li @ 2022-11-04 7:45 UTC (permalink / raw)
To: clabbe
Cc: herbert, davem, heiko, linux-crypto, linux-arm-kernel,
linux-rockchip, linux-kernel, Yang Li, Abaci Robot
There is no need to call the dev_err() function directly to print a
custom message when handling an error from either the platform_get_irq()
or platform_get_irq_byname() functions as both are going to display an
appropriate error message in case of a failure.
./drivers/crypto/rockchip/rk3288_crypto.c:351:2-9: line 351 is
redundant because platform_get_irq() already prints an error
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2677
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
change in v2:
--According to Corentin's suggestion, make the subject started by "crypto: rockchip:".
drivers/crypto/rockchip/rk3288_crypto.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/crypto/rockchip/rk3288_crypto.c b/drivers/crypto/rockchip/rk3288_crypto.c
index 6217e73ba4c4..9f6ba770a90a 100644
--- a/drivers/crypto/rockchip/rk3288_crypto.c
+++ b/drivers/crypto/rockchip/rk3288_crypto.c
@@ -348,7 +348,6 @@ static int rk_crypto_probe(struct platform_device *pdev)
crypto_info->irq = platform_get_irq(pdev, 0);
if (crypto_info->irq < 0) {
- dev_err(&pdev->dev, "control Interrupt is not available.\n");
err = crypto_info->irq;
goto err_crypto;
}
--
2.20.1.7.g153144c
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq()
2022-11-04 7:45 [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq() Yang Li
@ 2022-11-07 9:24 ` Corentin LABBE
2022-11-11 10:17 ` Herbert Xu
1 sibling, 0 replies; 3+ messages in thread
From: Corentin LABBE @ 2022-11-07 9:24 UTC (permalink / raw)
To: Yang Li
Cc: herbert, davem, heiko, linux-crypto, linux-arm-kernel,
linux-rockchip, linux-kernel, Abaci Robot
Le Fri, Nov 04, 2022 at 03:45:27PM +0800, Yang Li a écrit :
> There is no need to call the dev_err() function directly to print a
> custom message when handling an error from either the platform_get_irq()
> or platform_get_irq_byname() functions as both are going to display an
> appropriate error message in case of a failure.
>
> ./drivers/crypto/rockchip/rk3288_crypto.c:351:2-9: line 351 is
> redundant because platform_get_irq() already prints an error
>
> Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2677
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> ---
>
> change in v2:
> --According to Corentin's suggestion, make the subject started by "crypto: rockchip:".
>
> drivers/crypto/rockchip/rk3288_crypto.c | 1 -
> 1 file changed, 1 deletion(-)
>
Hello
Acked-by: Corentin Labbe <clabbe@baylibre.com>
Thanks
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq()
2022-11-04 7:45 [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq() Yang Li
2022-11-07 9:24 ` Corentin LABBE
@ 2022-11-11 10:17 ` Herbert Xu
1 sibling, 0 replies; 3+ messages in thread
From: Herbert Xu @ 2022-11-11 10:17 UTC (permalink / raw)
To: Yang Li
Cc: clabbe, davem, heiko, linux-crypto, linux-arm-kernel,
linux-rockchip, linux-kernel, Abaci Robot
On Fri, Nov 04, 2022 at 03:45:27PM +0800, Yang Li wrote:
> There is no need to call the dev_err() function directly to print a
> custom message when handling an error from either the platform_get_irq()
> or platform_get_irq_byname() functions as both are going to display an
> appropriate error message in case of a failure.
>
> ./drivers/crypto/rockchip/rk3288_crypto.c:351:2-9: line 351 is
> redundant because platform_get_irq() already prints an error
>
> Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2677
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> ---
>
> change in v2:
> --According to Corentin's suggestion, make the subject started by "crypto: rockchip:".
>
> drivers/crypto/rockchip/rk3288_crypto.c | 1 -
> 1 file changed, 1 deletion(-)
Patch applied. Thanks.
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-11 10:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-04 7:45 [PATCH -next v2] crypto: rockchip: Remove surplus dev_err() when using platform_get_irq() Yang Li
2022-11-07 9:24 ` Corentin LABBE
2022-11-11 10:17 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).