mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
ASoC: fsl: Fix error handling if platform_device_add fails
Call platform_device_put() instead of platform_device_unregister() if platform_device_add() fails. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
ded71dcb77
commit
d890a1a42d
2 changed files with 2 additions and 2 deletions
|
@ -505,7 +505,7 @@ static int mpc8610_hpcd_probe(struct platform_device *pdev)
|
|||
return 0;
|
||||
|
||||
error_sound:
|
||||
platform_device_unregister(sound_device);
|
||||
platform_device_put(sound_device);
|
||||
error:
|
||||
kfree(machine_data);
|
||||
error_alloc:
|
||||
|
|
|
@ -506,7 +506,7 @@ static int p1022_ds_probe(struct platform_device *pdev)
|
|||
|
||||
error:
|
||||
if (sound_device)
|
||||
platform_device_unregister(sound_device);
|
||||
platform_device_put(sound_device);
|
||||
|
||||
kfree(mdata);
|
||||
error_put:
|
||||
|
|
Loading…
Reference in a new issue