]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/video/pvr2fb.c
fix work queues in FEC driver
[linux-2.6-omap-h63xx.git] / drivers / video / pvr2fb.c
index 0f88c30f94f817bd002f39f08df82156688b16b9..f9300266044d8f8e910e1421cad7484f8ef181c7 100644 (file)
@@ -1082,13 +1082,12 @@ static int __init pvr2fb_init(void)
 #endif
        size = sizeof(struct fb_info) + sizeof(struct pvr2fb_par) + 16 * sizeof(u32);
 
-       fb_info = kmalloc(size, GFP_KERNEL);
+       fb_info = kzalloc(size, GFP_KERNEL);
        if (!fb_info) {
                printk(KERN_ERR "Failed to allocate memory for fb_info\n");
                return -ENOMEM;
        }
 
-       memset(fb_info, 0, size);
 
        currentpar = (struct pvr2fb_par *)(fb_info + 1);