Hi, another one for kzalloc.
Regards Oliver Signed-off-by: Oliver Neukum <[EMAIL PROTECTED]> --- linux-2.6.15-vanilla/drivers/usb/misc/usbled.c 2006-01-03 04:21:10.000000000 +0100 +++ linux-2.6.15/drivers/usb/misc/usbled.c 2006-01-06 21:48:21.000000000 +0100 @@ -106,12 +106,11 @@ 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); ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ linux-usb-devel@lists.sourceforge.net To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel