[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <03061c31-8a58-59a4-e76a-a4380e7a1935@users.sourceforge.net>
Date: Thu, 11 May 2017 15:47:28 +0200
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-c6x-dev@...ux-c6x.org, Aurelien Jacquiot <a-jacquiot@...com>,
Mark Salter <msalter@...hat.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org, Wolfram Sang <wsa@...-dreams.de>
Subject: [PATCH 2/4] C6X/megamode-pic: Delete an error message for a failed
memory allocation in init_megamod_pic()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Thu, 11 May 2017 15:00:30 +0200
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
arch/c6x/platforms/megamod-pic.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/arch/c6x/platforms/megamod-pic.c b/arch/c6x/platforms/megamod-pic.c
index 72b5f143c105..cf0ebf25e42f 100644
--- a/arch/c6x/platforms/megamod-pic.c
+++ b/arch/c6x/platforms/megamod-pic.c
@@ -209,7 +209,5 @@ static struct megamod_pic * __init init_megamod_pic(struct device_node *np)
- if (!pic) {
- pr_err("%s: Could not alloc PIC structure.\n", np->full_name);
+ if (!pic)
return NULL;
- }
pic->irqhost = irq_domain_add_linear(np, NR_COMBINERS * 32,
&megamod_domain_ops, pic);
--
2.12.3
Powered by blists - more mailing lists