Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120318
b: refs/heads/master
c: b8b33cb
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown committed Dec 18, 2008
1 parent 483735e commit 8654d79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0b34a3d03e2fa615a786027b1ef4cbbd8c807f2c
refs/heads/master: b8b33cb5608a3bb1b072548dc89159ef614096ab
6 changes: 5 additions & 1 deletion trunk/sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1320,8 +1320,12 @@ int snd_soc_dapm_new_controls(struct snd_soc_codec *codec,

for (i = 0; i < num; i++) {
ret = snd_soc_dapm_new_control(codec, widget);
if (ret < 0)
if (ret < 0) {
printk(KERN_ERR
"ASoC: Failed to create DAPM control %s: %d\n",
widget->name, ret);
return ret;
}
widget++;
}
return 0;
Expand Down

0 comments on commit 8654d79

Please sign in to comment.