mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe()
[ Upstream commit d96b1b8c9f ]
ddr_perf_probe() misses to call ida_simple_remove() in an error path.
Jump to cpuhp_state_err to fix it.
Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com>
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Link: https://lore.kernel.org/r/20210617122614.166823-1-jingxiangfeng@huawei.com
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
625ee7d267
commit
00b1a9f0e8
@@ -623,8 +623,10 @@ static int ddr_perf_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
name = devm_kasprintf(&pdev->dev, GFP_KERNEL, DDR_PERF_DEV_NAME "%d",
|
name = devm_kasprintf(&pdev->dev, GFP_KERNEL, DDR_PERF_DEV_NAME "%d",
|
||||||
num);
|
num);
|
||||||
if (!name)
|
if (!name) {
|
||||||
return -ENOMEM;
|
ret = -ENOMEM;
|
||||||
|
goto cpuhp_state_err;
|
||||||
|
}
|
||||||
|
|
||||||
pmu->devtype_data = of_device_get_match_data(&pdev->dev);
|
pmu->devtype_data = of_device_get_match_data(&pdev->dev);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user