aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/soc-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index e9968ffecd1c..8751efdea119 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1566,7 +1566,8 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
1566 for (i = 0; i < card->num_links; i++) { 1566 for (i = 0; i < card->num_links; i++) {
1567 ret = soc_probe_dai_link(card, i); 1567 ret = soc_probe_dai_link(card, i);
1568 if (ret < 0) { 1568 if (ret < 0) {
1569 printk(KERN_ERR "asoc: failed to instanciate card %s\n", card->name); 1569 pr_err("asoc: failed to instantiate card %s: %d\n",
1570 card->name, ret);
1570 goto probe_dai_err; 1571 goto probe_dai_err;
1571 } 1572 }
1572 } 1573 }