Hi,
On Tue, Dec 02, 2014 at 03:26:24PM +0000, Javi Merino wrote:
Hi Viresh,
On Fri, Nov 28, 2014 at 09:44:02AM +0000, Viresh Kumar wrote:
Just following coding guidelines here.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org
drivers/thermal/cpu_cooling.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c index def0f21..59725d8 100644 --- a/drivers/thermal/cpu_cooling.c +++ b/drivers/thermal/cpu_cooling.c @@ -468,8 +468,7 @@ __cpufreq_cooling_register(struct device_node *np, return ERR_PTR(-EINVAL); } }
- cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
GFP_KERNEL);
- cpufreq_dev = kzalloc(sizeof(*cool_dev), GFP_KERNEL);
This should be:
- cpufreq_dev = kzalloc(sizeof(*cpufreq_dev), GFP_KERNEL);
Agreed.
Cheers, Javi