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

Commit d6b96e47 authored by Markus Elfring's avatar Markus Elfring Committed by Rafael J. Wysocki
Browse files

cpufreq: qoriq: Drop memory allocation error messages from qoriq_cpufreq_cpu_init()



Omit extra messages 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>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent d430fb99
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -192,16 +192,12 @@ static int qoriq_cpufreq_cpu_init(struct cpufreq_policy *policy)
	count = clk_hw_get_num_parents(hwclk);

	data->pclk = kcalloc(count, sizeof(struct clk *), GFP_KERNEL);
	if (!data->pclk) {
		pr_err("%s: no memory\n", __func__);
	if (!data->pclk)
		goto err_nomem2;
	}

	table = kcalloc(count + 1, sizeof(*table), GFP_KERNEL);
	if (!table) {
		pr_err("%s: no memory\n", __func__);
	if (!table)
		goto err_pclk;
	}

	for (i = 0; i < count; i++) {
		clk = clk_hw_get_parent_by_index(hwclk, i)->clk;