1
0
Fork 0

[CPUFREQ] kzalloc conversion for gx-suspmod

Signed-off-by: Dave Jones <davej@redhat.com>
hifive-unleashed-5.1
Dave Jones 2006-03-11 16:13:56 -05:00
parent 388d6c5180
commit 84f0b1ef8c
1 changed files with 1 additions and 2 deletions

View File

@ -459,10 +459,9 @@ static int __init cpufreq_gx_init(void)
dprintk("geode suspend modulation available.\n");
params = kmalloc(sizeof(struct gxfreq_params), GFP_KERNEL);
params = kzalloc(sizeof(struct gxfreq_params), GFP_KERNEL);
if (params == NULL)
return -ENOMEM;
memset(params, 0, sizeof(struct gxfreq_params));
params->cs55x0 = gx_pci;
gx_params = params;