diff mbox series

[-next] crypto: keembay-ocs-hcu - Fix error return code in kmb_ocs_hcu_probe()

Message ID 20210210074350.867341-1-weiyongjun1@huawei.com (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series [-next] crypto: keembay-ocs-hcu - Fix error return code in kmb_ocs_hcu_probe() | expand

Commit Message

Wei Yongjun Feb. 10, 2021, 7:43 a.m. UTC
Fix to return negative error code -ENOMEM from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 472b04444cd3 ("crypto: keembay - Add Keem Bay OCS HCU driver")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/crypto/keembay/keembay-ocs-hcu-core.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Alessandrelli, Daniele Feb. 11, 2021, 3:11 p.m. UTC | #1
Hi Wei,

Thanks for the fix.

On Wed, 2021-02-10 at 07:43 +0000, Wei Yongjun wrote:
> Fix to return negative error code -ENOMEM from the error handling
> case instead of 0, as done elsewhere in this function.
> 
> Fixes: 472b04444cd3 ("crypto: keembay - Add Keem Bay OCS HCU driver")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
> ---
>  drivers/crypto/keembay/keembay-ocs-hcu-core.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/crypto/keembay/keembay-ocs-hcu-core.c
> b/drivers/crypto/keembay/keembay-ocs-hcu-core.c
> index c4b97b4160e9..322c51a6936f 100644
> --- a/drivers/crypto/keembay/keembay-ocs-hcu-core.c
> +++ b/drivers/crypto/keembay/keembay-ocs-hcu-core.c
> @@ -1220,8 +1220,10 @@ static int kmb_ocs_hcu_probe(struct
> platform_device *pdev)
>  
>  	/* Initialize crypto engine */
>  	hcu_dev->engine = crypto_engine_alloc_init(dev, 1);
> -	if (!hcu_dev->engine)
> +	if (!hcu_dev->engine) {
> +		rc = -ENOMEM;
>  		goto list_del;
> +	}
>  
>  	rc = crypto_engine_start(hcu_dev->engine);
>  	if (rc) {
> 

Reviewed-by: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Herbert Xu March 4, 2021, 6:42 a.m. UTC | #2
On Wed, Feb 10, 2021 at 07:43:50AM +0000, Wei Yongjun wrote:
> Fix to return negative error code -ENOMEM from the error handling
> case instead of 0, as done elsewhere in this function.
> 
> Fixes: 472b04444cd3 ("crypto: keembay - Add Keem Bay OCS HCU driver")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
> ---
>  drivers/crypto/keembay/keembay-ocs-hcu-core.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)

Patch applied.  Thanks.
diff mbox series

Patch

diff --git a/drivers/crypto/keembay/keembay-ocs-hcu-core.c b/drivers/crypto/keembay/keembay-ocs-hcu-core.c
index c4b97b4160e9..322c51a6936f 100644
--- a/drivers/crypto/keembay/keembay-ocs-hcu-core.c
+++ b/drivers/crypto/keembay/keembay-ocs-hcu-core.c
@@ -1220,8 +1220,10 @@  static int kmb_ocs_hcu_probe(struct platform_device *pdev)
 
 	/* Initialize crypto engine */
 	hcu_dev->engine = crypto_engine_alloc_init(dev, 1);
-	if (!hcu_dev->engine)
+	if (!hcu_dev->engine) {
+		rc = -ENOMEM;
 		goto list_del;
+	}
 
 	rc = crypto_engine_start(hcu_dev->engine);
 	if (rc) {