2022-09-20 03:29:22

by Yue Haibing

[permalink] [raw]
Subject: [PATCH -next] crypto: aspeed - Fix check for platform_get_irq() errors

The platform_get_irq() function returns negative on error and
positive non-zero values on success. It never returns zero, but if it
did then treat that as a success.

Also remove redundant dev_err() print as platform_get_irq() already
prints an error.

Fixes: 108713a713c7 ("crypto: aspeed - Add HACE hash driver")
Signed-off-by: YueHaibing <[email protected]>
---
drivers/crypto/aspeed/aspeed-hace.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/crypto/aspeed/aspeed-hace.c b/drivers/crypto/aspeed/aspeed-hace.c
index 3f880aafb6a2..f7f1d33defb1 100644
--- a/drivers/crypto/aspeed/aspeed-hace.c
+++ b/drivers/crypto/aspeed/aspeed-hace.c
@@ -130,10 +130,8 @@ static int aspeed_hace_probe(struct platform_device *pdev)

/* Get irq number and register it */
hace_dev->irq = platform_get_irq(pdev, 0);
- if (!hace_dev->irq) {
- dev_err(&pdev->dev, "Failed to get interrupt\n");
+ if (hace_dev->irq < 0)
return -ENXIO;
- }

rc = devm_request_irq(&pdev->dev, hace_dev->irq, aspeed_hace_irq, 0,
dev_name(&pdev->dev), hace_dev);
--
2.17.1


2022-09-20 05:28:11

by Neal Liu

[permalink] [raw]
Subject: RE: [PATCH -next] crypto: aspeed - Fix check for platform_get_irq() errors

> The platform_get_irq() function returns negative on error and positive non-zero
> values on success. It never returns zero, but if it did then treat that as a
> success.
>
> Also remove redundant dev_err() print as platform_get_irq() already prints an
> error.
>
> Fixes: 108713a713c7 ("crypto: aspeed - Add HACE hash driver")
> Signed-off-by: YueHaibing <[email protected]>

Reviewed-by: Neal Liu <[email protected]>

> ---
> drivers/crypto/aspeed/aspeed-hace.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/crypto/aspeed/aspeed-hace.c
> b/drivers/crypto/aspeed/aspeed-hace.c
> index 3f880aafb6a2..f7f1d33defb1 100644
> --- a/drivers/crypto/aspeed/aspeed-hace.c
> +++ b/drivers/crypto/aspeed/aspeed-hace.c
> @@ -130,10 +130,8 @@ static int aspeed_hace_probe(struct platform_device
> *pdev)
>
> /* Get irq number and register it */
> hace_dev->irq = platform_get_irq(pdev, 0);
> - if (!hace_dev->irq) {
> - dev_err(&pdev->dev, "Failed to get interrupt\n");
> + if (hace_dev->irq < 0)
> return -ENXIO;
> - }
>
> rc = devm_request_irq(&pdev->dev, hace_dev->irq, aspeed_hace_irq, 0,
> dev_name(&pdev->dev), hace_dev);
> --
> 2.17.1

2022-09-30 06:17:06

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH -next] crypto: aspeed - Fix check for platform_get_irq() errors

On Tue, Sep 20, 2022 at 11:21:18AM +0800, YueHaibing wrote:
> The platform_get_irq() function returns negative on error and
> positive non-zero values on success. It never returns zero, but if it
> did then treat that as a success.
>
> Also remove redundant dev_err() print as platform_get_irq() already
> prints an error.
>
> Fixes: 108713a713c7 ("crypto: aspeed - Add HACE hash driver")
> Signed-off-by: YueHaibing <[email protected]>
> ---
> drivers/crypto/aspeed/aspeed-hace.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)

Patch applied. Thanks.
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt