diff options
author | Charles Keepax <[email protected]> | 2015-05-01 12:37:24 +0100 |
---|---|---|
committer | Mark Brown <[email protected]> | 2015-05-04 13:51:16 +0100 |
commit | 40b7bea10ae09595da5d66228d93e3920306790d (patch) | |
tree | bf0a2eb797e0bb3217d935fcfc00dfb95fdfadbc | |
parent | beb9969b8a644991dbfdaf18b9f1161a39a91df8 (diff) |
ASoC: dapm: Remove local OOM error message
The memory subsystem is pretty chatty on failure no need to have local
OOM messages as well.
Signed-off-by: Charles Keepax <[email protected]>
Reviewed-by: Lars-Peter Clausen <[email protected]>
Tested-by: Lars-Peter Clausen <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/soc-dapm.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 79b947820231..beb48b608142 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -310,12 +310,8 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget, struct soc_mixer_control *mc; data = kzalloc(sizeof(*data), GFP_KERNEL); - if (!data) { - dev_err(widget->dapm->dev, - "ASoC: can't allocate kcontrol data for %s\n", - widget->name); + if (!data) return -ENOMEM; - } INIT_LIST_HEAD(&data->paths); |