Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1740750

[PATCH] clk: samsung: Delete an error message for a failed memory allocation in exynos_register_cpu_clock()

From SF Markus Elfring <elfring@users.sourceforge.net>
Newsgroups linux.kernel
Subject [PATCH] clk: samsung: Delete an error message for a failed memory allocation in exynos_register_cpu_clock()
Date 2017-09-27 16:00 +0200
Message-ID <uul2x-3HA-5@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Markus Elfring <elfring@users.sourceforge.net>
Date: Wed, 27 Sep 2017 15:46:53 +0200

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/clk/samsung/clk-cpu.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/clk/samsung/clk-cpu.c b/drivers/clk/samsung/clk-cpu.c
index 6686e8ba61f9..d2c99d8916b8 100644
--- a/drivers/clk/samsung/clk-cpu.c
+++ b/drivers/clk/samsung/clk-cpu.c
@@ -457,8 +457,6 @@ int __init exynos_register_cpu_clock(struct samsung_clk_provider *ctx,
 
 	cpuclk->cfg = kmemdup(cfg, sizeof(*cfg) * num_cfgs, GFP_KERNEL);
 	if (!cpuclk->cfg) {
-		pr_err("%s: could not allocate memory for cpuclk data\n",
-				__func__);
 		ret = -ENOMEM;
 		goto unregister_clk_nb;
 	}
-- 
2.14.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] clk: samsung: Delete an error message for a failed memory  allocation in exynos_register_cpu_clock() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-09-27 16:00 +0200
  Re: [PATCH] clk: samsung: Delete an error message for a failed  memory allocation in exynos_register_cpu_clock() Sylwester Nawrocki <s.nawrocki@samsung.com> - 2017-09-27 17:00 +0200

csiph-web