From: Markus Elfring Date: Fri, 11 Aug 2017 19:45:37 +0000 (+0200) Subject: ASoC: blackfin: Delete an error message for a failed memory allocation in sport_create() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=60ea0394a602d5abc24bd2381fa0966a8720eec1;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Mark Brown --- 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) 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);