ASoC: Improve error reporting for AC97 reset failures
Print something a bit more verbose to help make errors a little more obvious. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
@@ -238,7 +238,7 @@ static int ad1980_soc_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
ret = ad1980_reset(codec, 0);
|
ret = ad1980_reset(codec, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk(KERN_ERR "AC97 link error\n");
|
printk(KERN_ERR "Failed to reset AD1980: AC97 link error\n");
|
||||||
goto reset_err;
|
goto reset_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -690,7 +690,7 @@ static int wm9712_soc_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
ret = wm9712_reset(codec, 0);
|
ret = wm9712_reset(codec, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk(KERN_ERR "AC97 link error\n");
|
printk(KERN_ERR "Failed to reset WM9712: AC97 link error\n");
|
||||||
goto reset_err;
|
goto reset_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1243,7 +1243,7 @@ static int wm9713_soc_probe(struct platform_device *pdev)
|
|||||||
wm9713_reset(codec, 0);
|
wm9713_reset(codec, 0);
|
||||||
ret = wm9713_reset(codec, 1);
|
ret = wm9713_reset(codec, 1);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk(KERN_ERR "AC97 link error\n");
|
printk(KERN_ERR "Failed to reset WM9713: AC97 link error\n");
|
||||||
goto reset_err;
|
goto reset_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user