mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
[PATCH] USB: kzalloc in usbled
another one 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
d874a2bade
commit
06d694748b
@ -106,12 +106,11 @@ static int led_probe(struct usb_interface *interface, const struct usb_device_id
|
||||
struct usb_led *dev = NULL;
|
||||
int retval = -ENOMEM;
|
||||
|
||||
dev = kmalloc(sizeof(struct usb_led), GFP_KERNEL);
|
||||
dev = kzalloc(sizeof(struct usb_led), GFP_KERNEL);
|
||||
if (dev == NULL) {
|
||||
dev_err(&interface->dev, "Out of memory\n");
|
||||
goto error;
|
||||
}
|
||||
memset (dev, 0x00, sizeof (*dev));
|
||||
|
||||
dev->udev = usb_get_dev(udev);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user