mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 13:22:55 +00:00
[PATCH] USB: kzalloc in sisusbvga
this does two things: - use kzalloc where appropriate - correct error return codes in ioctl Signed-off-by: Oliver Neukum <oliver@neukum.name> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
06d694748b
commit
9ee884cc89
@ -3188,7 +3188,7 @@ sisusb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
|
||||
break;
|
||||
|
||||
default:
|
||||
retval = -EINVAL;
|
||||
retval = -ENOTTY;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -3251,12 +3251,11 @@ static int sisusb_probe(struct usb_interface *intf,
|
||||
dev->devnum);
|
||||
|
||||
/* Allocate memory for our private */
|
||||
if (!(sisusb = kmalloc(sizeof(*sisusb), GFP_KERNEL))) {
|
||||
if (!(sisusb = kzalloc(sizeof(*sisusb), GFP_KERNEL))) {
|
||||
printk(KERN_ERR
|
||||
"sisusb: Failed to allocate memory for private data\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
memset(sisusb, 0, sizeof(*sisusb));
|
||||
kref_init(&sisusb->kref);
|
||||
|
||||
init_MUTEX(&(sisusb->lock));
|
||||
|
Loading…
Reference in New Issue
Block a user