diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-08-11 15:45:37 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-14 12:28:14 -0400 |
commit | 60ea0394a602d5abc24bd2381fa0966a8720eec1 (patch) | |
tree | f7d71d083a77a08b682cdc5ccf254ca506f3d2da | |
parent | e76b3f41a3c39fae342fe4db530c3917199cfa96 (diff) |
ASoC: blackfin: Delete an error message for a failed memory allocation in sport_create()
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/blackfin/bf6xx-sport.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/blackfin/bf6xx-sport.c b/sound/soc/blackfin/bf6xx-sport.c index dfb744381c42..1bc3e0a47a57 100644 --- a/sound/soc/blackfin/bf6xx-sport.c +++ b/sound/soc/blackfin/bf6xx-sport.c | |||
@@ -388,10 +388,9 @@ struct sport_device *sport_create(struct platform_device *pdev) | |||
388 | int ret; | 388 | int ret; |
389 | 389 | ||
390 | sport = kzalloc(sizeof(*sport), GFP_KERNEL); | 390 | sport = kzalloc(sizeof(*sport), GFP_KERNEL); |
391 | if (!sport) { | 391 | if (!sport) |
392 | dev_err(dev, "Unable to allocate memory for sport device\n"); | ||
393 | return NULL; | 392 | return NULL; |
394 | } | 393 | |
395 | sport->pdev = pdev; | 394 | sport->pdev = pdev; |
396 | 395 | ||
397 | ret = sport_get_resource(sport); | 396 | ret = sport_get_resource(sport); |