mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe()
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>
This commit is contained in:
parent
4e16f283ed
commit
d96b1b8c9f
@ -702,8 +702,10 @@ static int ddr_perf_probe(struct platform_device *pdev)
|
||||
|
||||
name = devm_kasprintf(&pdev->dev, GFP_KERNEL, DDR_PERF_DEV_NAME "%d",
|
||||
num);
|
||||
if (!name)
|
||||
return -ENOMEM;
|
||||
if (!name) {
|
||||
ret = -ENOMEM;
|
||||
goto cpuhp_state_err;
|
||||
}
|
||||
|
||||
pmu->devtype_data = of_device_get_match_data(&pdev->dev);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user