diff options
author | Sachin Kamat <sachin.kamat@samsung.com> | 2014-06-20 11:59:12 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-27 13:48:23 +0200 |
commit | ba546687083b68f43c26fcce9771278faae2bcf5 (patch) | |
tree | d591560d053518f78c5c39aba18d9543b38152f3 /sound/soc/codecs/wm_hubs.c | |
parent | ASoC: wm9090: Remove redundant OOM message (diff) | |
download | linux-ba546687083b68f43c26fcce9771278faae2bcf5.tar.xz linux-ba546687083b68f43c26fcce9771278faae2bcf5.zip |
ASoC: wm_hubs: Remove redundant OOM message
Let memory subsystem handle the error logging.
Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/codecs/wm_hubs.c')
-rw-r--r-- | sound/soc/codecs/wm_hubs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/codecs/wm_hubs.c b/sound/soc/codecs/wm_hubs.c index 916817fe6632..374537d5e179 100644 --- a/sound/soc/codecs/wm_hubs.c +++ b/sound/soc/codecs/wm_hubs.c @@ -183,10 +183,8 @@ static void wm_hubs_dcs_cache_set(struct snd_soc_codec *codec, u16 dcs_cfg) return; cache = devm_kzalloc(codec->dev, sizeof(*cache), GFP_KERNEL); - if (!cache) { - dev_err(codec->dev, "Failed to allocate DCS cache entry\n"); + if (!cache) return; - } cache->left = snd_soc_read(codec, WM8993_LEFT_OUTPUT_VOLUME); cache->left &= WM8993_HPOUT1L_VOL_MASK; |