mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
ASoC: Display return code when failing to add a DAPM kcontrol
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
09318c47b6
commit
6553e192d4
@ -357,8 +357,9 @@ static int dapm_new_mixer(struct snd_soc_codec *codec,
|
||||
path->long_name);
|
||||
ret = snd_ctl_add(codec->card, path->kcontrol);
|
||||
if (ret < 0) {
|
||||
printk(KERN_ERR "asoc: failed to add dapm kcontrol %s\n",
|
||||
path->long_name);
|
||||
printk(KERN_ERR "asoc: failed to add dapm kcontrol %s: %d\n",
|
||||
path->long_name,
|
||||
ret);
|
||||
kfree(path->long_name);
|
||||
path->long_name = NULL;
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user