dect
/
linux-2.6
Archived
13
0
Fork 0

ASoC: Report I/O errors from WM8753 reset

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Mark Brown 2009-02-22 14:19:23 +00:00
parent ce3bdaa871
commit eeb1080b29
1 changed files with 5 additions and 1 deletions

View File

@ -1561,7 +1561,11 @@ static int wm8753_init(struct snd_soc_device *socdev)
wm8753_set_dai_mode(codec, 0);
wm8753_reset(codec);
ret = wm8753_reset(codec);
if (ret < 0) {
printk(KERN_ERR "wm8753: failed to reset device\n");
return ret;
}
/* register pcms */
ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);