crypto: sun8i-ce - Fix runtime PM imbalance in sun8i_ce_cipher_init
pm_runtime_get_sync() increments the runtime PM usage counter even the call returns an error code. Thus a corresponding decrement is needed on the error handling path to keep the counter balanced. Fix this by adding the missed function call. Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
@@ -358,6 +358,7 @@ int sun8i_ce_cipher_init(struct crypto_tfm *tfm)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
error_pm:
|
error_pm:
|
||||||
|
pm_runtime_put_noidle(op->ce->dev);
|
||||||
crypto_free_sync_skcipher(op->fallback_tfm);
|
crypto_free_sync_skcipher(op->fallback_tfm);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user