devfreq_cooling: return on allocation failure

If the allocation fails then we can't continue.

Fixes: a76caf55e5 ('thermal: Add devfreq cooling')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
This commit is contained in:
Dan Carpenter 2015-11-04 16:36:20 +03:00 committed by Eduardo Valentin
parent 7e38a5b1da
commit ce5ee16112
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ static int devfreq_cooling_gen_tables(struct devfreq_cooling_device *dfc)
power_table = kcalloc(num_opps, sizeof(*power_table),
GFP_KERNEL);
if (!power_table)
ret = -ENOMEM;
return -ENOMEM;
}
freq_table = kcalloc(num_opps, sizeof(*freq_table),