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

Commit 3355c91b authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Viresh Kumar
Browse files

cpufreq: ap806: Add NULL check after kcalloc



Add NULL check  after kcalloc.

Fix below issue reported by coccicheck
./drivers/cpufreq/armada-8k-cpufreq.c:138:1-12: alloc with no test,
possible model on line 151

Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent b880c183
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -136,6 +136,8 @@ static int __init armada_8k_cpufreq_init(void)


	nb_cpus = num_possible_cpus();
	nb_cpus = num_possible_cpus();
	freq_tables = kcalloc(nb_cpus, sizeof(*freq_tables), GFP_KERNEL);
	freq_tables = kcalloc(nb_cpus, sizeof(*freq_tables), GFP_KERNEL);
	if (!freq_tables)
		return -ENOMEM;
	cpumask_copy(&cpus, cpu_possible_mask);
	cpumask_copy(&cpus, cpu_possible_mask);


	/*
	/*