diff options
| author | Takashi Iwai <tiwai@suse.de> | 2009-11-27 09:14:09 -0500 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2009-11-27 09:14:09 -0500 |
| commit | a22eaf4ce106404f6c5283da30b4d514ede964c1 (patch) | |
| tree | 51ad476c79891cf34709acf12c5728c5857aae7d | |
| parent | 74ea23aa6c9a8bece71b35ddeeb7ad6ae6782cd9 (diff) | |
ASoC: Revert missing reset_err in wm97*.c
The commit fe3e78e073d25308756f38019956061153267769
ASoC: Factor out snd_soc_init_card()
removed the error paths that are still valid for wm97* codecs, causing
the compile errors like
sound/soc/codecs/wm9705.c:399: error: label 'reset_err' used but not defined
sound/soc/codecs/wm9712.c:687: error: label 'reset_err' used but not defined
sound/soc/codecs/wm9713.c:1237: error: label 'reset_err' used but not defined
Revert the removed error path codes.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/soc/codecs/wm9705.c | 2 | ||||
| -rw-r--r-- | sound/soc/codecs/wm9712.c | 2 | ||||
| -rw-r--r-- | sound/soc/codecs/wm9713.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm9705.c b/sound/soc/codecs/wm9705.c index dfffc6c778c..ec54c6da985 100644 --- a/sound/soc/codecs/wm9705.c +++ b/sound/soc/codecs/wm9705.c | |||
| @@ -404,6 +404,8 @@ static int wm9705_soc_probe(struct platform_device *pdev) | |||
| 404 | 404 | ||
| 405 | return 0; | 405 | return 0; |
| 406 | 406 | ||
| 407 | reset_err: | ||
| 408 | snd_soc_free_pcms(socdev); | ||
| 407 | pcm_err: | 409 | pcm_err: |
| 408 | snd_soc_free_ac97_codec(codec); | 410 | snd_soc_free_ac97_codec(codec); |
| 409 | codec_err: | 411 | codec_err: |
diff --git a/sound/soc/codecs/wm9712.c b/sound/soc/codecs/wm9712.c index 2a087227300..0ac1215dcd9 100644 --- a/sound/soc/codecs/wm9712.c +++ b/sound/soc/codecs/wm9712.c | |||
| @@ -697,6 +697,8 @@ static int wm9712_soc_probe(struct platform_device *pdev) | |||
| 697 | 697 | ||
| 698 | return 0; | 698 | return 0; |
| 699 | 699 | ||
| 700 | reset_err: | ||
| 701 | snd_soc_free_pcms(socdev); | ||
| 700 | pcm_err: | 702 | pcm_err: |
| 701 | snd_soc_free_ac97_codec(codec); | 703 | snd_soc_free_ac97_codec(codec); |
| 702 | 704 | ||
diff --git a/sound/soc/codecs/wm9713.c b/sound/soc/codecs/wm9713.c index 00bac315fb3..4d74ecb0e56 100644 --- a/sound/soc/codecs/wm9713.c +++ b/sound/soc/codecs/wm9713.c | |||
| @@ -1249,6 +1249,8 @@ static int wm9713_soc_probe(struct platform_device *pdev) | |||
| 1249 | 1249 | ||
| 1250 | return 0; | 1250 | return 0; |
| 1251 | 1251 | ||
| 1252 | reset_err: | ||
| 1253 | snd_soc_free_pcms(socdev); | ||
| 1252 | pcm_err: | 1254 | pcm_err: |
| 1253 | snd_soc_free_ac97_codec(codec); | 1255 | snd_soc_free_ac97_codec(codec); |
| 1254 | 1256 | ||
