[PATCH] USB: kzalloc in idmouse
another for kzalloc. Signed-off-by: Oliver Neukum <oliver@neukum.name> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5f7481337c
commit
092e462a53
1 changed files with 1 additions and 2 deletions
|
@ -340,10 +340,9 @@ static int idmouse_probe(struct usb_interface *interface,
|
|||
return -ENODEV;
|
||||
|
||||
/* allocate memory for our device state and initialize it */
|
||||
dev = kmalloc(sizeof(*dev), GFP_KERNEL);
|
||||
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
||||
if (dev == NULL)
|
||||
return -ENOMEM;
|
||||
memset(dev, 0x00, sizeof(*dev));
|
||||
|
||||
init_MUTEX(&dev->sem);
|
||||
dev->udev = udev;
|
||||
|
|
Loading…
Reference in a new issue