mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
cpufreq: brcmstb-avs-cpufreq: Fix resource leaks in ->remove()
[ Upstream commit3657f729b6] If 'cpufreq_unregister_driver()' fails, just WARN and continue, so that other resources are freed. Fixes:de322e0859("cpufreq: brcmstb-avs-cpufreq: AVS CPUfreq driver for Broadcom STB SoCs") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> [ Viresh: Updated Subject ] Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
de17aa73c9
commit
88cd0e882f
|
|
@ -754,8 +754,7 @@ static int brcm_avs_cpufreq_remove(struct platform_device *pdev)
|
|||
int ret;
|
||||
|
||||
ret = cpufreq_unregister_driver(&brcm_avs_driver);
|
||||
if (ret)
|
||||
return ret;
|
||||
WARN_ON(ret);
|
||||
|
||||
brcm_avs_prepare_uninit(pdev);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user