[ALSA] ASoC codec probe failure bug
This patch fixes a bug whereby some resources were not being freed when codec probe() failed. Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:
parent
0cb29ea0d4
commit
18b9b3d996
|
@ -1234,7 +1234,7 @@ platform_err:
|
|||
codec_dev->remove(pdev);
|
||||
|
||||
cpu_dai_err:
|
||||
for (i--; i > 0; i--) {
|
||||
for (i--; i >= 0; i--) {
|
||||
struct snd_soc_cpu_dai *cpu_dai = machine->dai_link[i].cpu_dai;
|
||||
if (cpu_dai->remove)
|
||||
cpu_dai->remove(pdev);
|
||||
|
|
Loading…
Reference in New Issue