diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-11-22 09:50:46 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-27 08:10:31 -0500 |
commit | ddedd797943df21a2464420744d117e930a43af8 (patch) | |
tree | 1bebd1131dcb1fb48f39ac3a759ce812027bec71 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
ASoC: cs42l73: Delete an error message for a failed memory allocation in cs42l73_i2c_probe()
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/cs42l73.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c index 3df2c473ab88..978cfbbad408 100644 --- a/sound/soc/codecs/cs42l73.c +++ b/sound/soc/codecs/cs42l73.c | |||
@@ -1307,10 +1307,9 @@ static int cs42l73_i2c_probe(struct i2c_client *i2c_client, | |||
1307 | pdata = devm_kzalloc(&i2c_client->dev, | 1307 | pdata = devm_kzalloc(&i2c_client->dev, |
1308 | sizeof(struct cs42l73_platform_data), | 1308 | sizeof(struct cs42l73_platform_data), |
1309 | GFP_KERNEL); | 1309 | GFP_KERNEL); |
1310 | if (!pdata) { | 1310 | if (!pdata) |
1311 | dev_err(&i2c_client->dev, "could not allocate pdata\n"); | ||
1312 | return -ENOMEM; | 1311 | return -ENOMEM; |
1313 | } | 1312 | |
1314 | if (i2c_client->dev.of_node) { | 1313 | if (i2c_client->dev.of_node) { |
1315 | if (of_property_read_u32(i2c_client->dev.of_node, | 1314 | if (of_property_read_u32(i2c_client->dev.of_node, |
1316 | "chgfreq", &val32) >= 0) | 1315 | "chgfreq", &val32) >= 0) |