linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] TC: Delete an error message for a failed memory allocation in tc_bus_add_devices()
@ 2017-12-10 17:48 SF Markus Elfring
  2017-12-10 21:41 ` Maciej W. Rozycki
  0 siblings, 1 reply; 6+ messages in thread
From: SF Markus Elfring @ 2017-12-10 17:48 UTC (permalink / raw)
  To: linux-mips, Maciej W. Rozycki, Ralf Bächle; +Cc: LKML, kernel-janitors

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 10 Dec 2017 18:42:42 +0100

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>
---
 drivers/tc/tc.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/tc/tc.c b/drivers/tc/tc.c
index 3be9519654e5..2deb3768a9f6 100644
--- a/drivers/tc/tc.c
+++ b/drivers/tc/tc.c
@@ -82,10 +82,9 @@ static void __init tc_bus_add_devices(struct tc_bus *tbus)
 
 		/* Found a board, allocate it an entry in the list */
 		tdev = kzalloc(sizeof(*tdev), GFP_KERNEL);
-		if (!tdev) {
-			pr_err("tc%x: unable to allocate tc_dev\n", slot);
+		if (!tdev)
 			goto out_err;
-		}
+
 		dev_set_name(&tdev->dev, "tc%x", slot);
 		tdev->bus = tbus;
 		tdev->dev.parent = &tbus->dev;
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-12-11 14:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-10 17:48 [PATCH] TC: Delete an error message for a failed memory allocation in tc_bus_add_devices() SF Markus Elfring
2017-12-10 21:41 ` Maciej W. Rozycki
2017-12-11  2:05   ` Joe Perches
2017-12-11 13:17     ` Maciej W. Rozycki
2017-12-11 13:38       ` SF Markus Elfring
2017-12-11  8:15   ` SF Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).