You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
crypto: ccree - Remove debugfs when platform_driver_register failed
[ Upstream commit 4f1c596df706c9aca662b6c214fad84047ae2a97 ]
When platform_driver_register failed, we need to remove debugfs,
which will caused a resource leak, fix it.
Failed logs as follows:
[ 32.606488] debugfs: Directory 'ccree' with parent '/' already present!
Fixes: 4c3f97276e ("crypto: ccree - introduce CryptoCell driver")
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
33260f4c3e
commit
1ab9e15b14
@@ -614,9 +614,17 @@ static struct platform_driver ccree_driver = {
|
||||
|
||||
static int __init ccree_init(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
cc_debugfs_global_init();
|
||||
|
||||
return platform_driver_register(&ccree_driver);
|
||||
rc = platform_driver_register(&ccree_driver);
|
||||
if (rc) {
|
||||
cc_debugfs_global_fini();
|
||||
return rc;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
module_init(ccree_init);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user