]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[SBUS] vfc_dev.c: kzalloc
authorvignesh babu <vignesh.babu@wipro.com>
Tue, 17 Apr 2007 19:42:09 +0000 (12:42 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Sat, 21 Apr 2007 22:29:17 +0000 (15:29 -0700)
Replacing kmalloc/memset combination with kzalloc.

Signed-off-by: vignesh babu <vignesh.babu@wipro.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/sbus/char/vfc_dev.c

index 8bfb67ccdcd46fef77963273ac055f8e1b539638..c3135e2fbd5ab804b1988b40e5f621431b3eb092 100644 (file)
@@ -259,11 +259,10 @@ static int vfc_debug(struct vfc_dev *dev, int cmd, void __user *argp)
                if (copy_from_user(&inout, argp, sizeof(inout)))
                        return -EFAULT;
 
-               buffer = kmalloc(inout.len, GFP_KERNEL);
+               buffer = kzalloc(inout.len, GFP_KERNEL);
                if (buffer == NULL)
                        return -ENOMEM;
 
-               memset(buffer,0,inout.len);
                vfc_lock_device(dev);
                inout.ret=
                        vfc_i2c_recvbuf(dev,inout.addr & 0xff