diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-11-23 21:30:07 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-27 12:58:14 +0000 |
commit | 2dbb29cd977fc281f71f8895abce7e382efe77e1 (patch) | |
tree | f43fa998e85822d9312ffbaf0d4f1123bbb03cd5 /sound/soc/codecs/twl4030.c | |
parent | 15f8c5f2415bfac73f33a14bcd83422bcbfb5298 (diff) | |
download | linux-2dbb29cd977fc281f71f8895abce7e382efe77e1.tar.gz linux-2dbb29cd977fc281f71f8895abce7e382efe77e1.tar.bz2 linux-2dbb29cd977fc281f71f8895abce7e382efe77e1.zip |
ASoC: twl4030: Delete an error message for a failed memory allocation in twl4030_get_pdata()
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/twl4030.c')
-rw-r--r-- | sound/soc/codecs/twl4030.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c index cfe72b9d4356..90691701b082 100644 --- a/sound/soc/codecs/twl4030.c +++ b/sound/soc/codecs/twl4030.c @@ -240,7 +240,6 @@ static struct twl4030_codec_data *twl4030_get_pdata(struct snd_soc_codec *codec) sizeof(struct twl4030_codec_data), GFP_KERNEL); if (!pdata) { - dev_err(codec->dev, "Can not allocate memory\n"); of_node_put(twl4030_codec_node); return NULL; } |