提交 d890a1a4 编写于 作者: A Axel Lin 提交者: Mark Brown

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: NAxel Lin <axel.lin@gmail.com>
Acked-by: NLiam Girdwood <lrg@ti.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 ded71dcb
...@@ -505,7 +505,7 @@ static int mpc8610_hpcd_probe(struct platform_device *pdev) ...@@ -505,7 +505,7 @@ static int mpc8610_hpcd_probe(struct platform_device *pdev)
return 0; return 0;
error_sound: error_sound:
platform_device_unregister(sound_device); platform_device_put(sound_device);
error: error:
kfree(machine_data); kfree(machine_data);
error_alloc: error_alloc:
......
...@@ -506,7 +506,7 @@ static int p1022_ds_probe(struct platform_device *pdev) ...@@ -506,7 +506,7 @@ static int p1022_ds_probe(struct platform_device *pdev)
error: error:
if (sound_device) if (sound_device)
platform_device_unregister(sound_device); platform_device_put(sound_device);
kfree(mdata); kfree(mdata);
error_put: error_put:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册