staging: ft1000: optimize kmalloc to kzalloc
authorAlexander Beregalov <a.beregalov@gmail.com>
Wed, 9 Mar 2011 00:53:37 +0000 (03:53 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 9 Mar 2011 23:54:32 +0000 (15:54 -0800)
Use kzalloc rather than kmalloc followed by memset with 0.
Found by coccinelle.

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/ft1000/ft1000-pcmcia/ft1000_cs.c

index 874919c..10af477 100644 (file)
@@ -120,11 +120,10 @@ static int ft1000_attach(struct pcmcia_device *link)
 
        DEBUG(0, "ft1000_cs: ft1000_attach()\n");
 
-       local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
+       local = kzalloc(sizeof(local_info_t), GFP_KERNEL);
        if (!local) {
                return -ENOMEM;
        }
-       memset(local, 0, sizeof(local_info_t));
        local->link = link;
 
        link->priv = local;