diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-11-23 15:30:07 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-27 07:58:14 -0500 |
commit | 2dbb29cd977fc281f71f8895abce7e382efe77e1 (patch) | |
tree | f43fa998e85822d9312ffbaf0d4f1123bbb03cd5 | |
parent | 15f8c5f2415bfac73f33a14bcd83422bcbfb5298 (diff) |
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>
-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) | |||
240 | sizeof(struct twl4030_codec_data), | 240 | sizeof(struct twl4030_codec_data), |
241 | GFP_KERNEL); | 241 | GFP_KERNEL); |
242 | if (!pdata) { | 242 | if (!pdata) { |
243 | dev_err(codec->dev, "Can not allocate memory\n"); | ||
244 | of_node_put(twl4030_codec_node); | 243 | of_node_put(twl4030_codec_node); |
245 | return NULL; | 244 | return NULL; |
246 | } | 245 | } |