Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60ea0394 authored by Markus Elfring's avatar Markus Elfring Committed by Mark Brown
Browse files

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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e76b3f41
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -388,10 +388,9 @@ struct sport_device *sport_create(struct platform_device *pdev)
	int ret;

	sport = kzalloc(sizeof(*sport), GFP_KERNEL);
	if (!sport) {
		dev_err(dev, "Unable to allocate memory for sport device\n");
	if (!sport)
		return NULL;
	}

	sport->pdev = pdev;

	ret = sport_get_resource(sport);