diff options
author | Oliver Neukum <oliver@neukum.org> | 2006-01-06 14:54:29 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 17:49:52 -0500 |
commit | bbdb7dafb5b5a3c0197cbabd5055d8e9c093e3ea (patch) | |
tree | 9ac23c97ef6a983e4e7a98e19f9307b8d3aad1f4 /drivers/usb/input/hiddev.c | |
parent | 887c2560b6ceb5fe7ac24704e85af507c6d960e5 (diff) |
[PATCH] USB: kzalloc for hid
this uses kzalloc in hid.
Signed-off-by: Oliver Neukum <oliver@neukum.name>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/input/hiddev.c')
-rw-r--r-- | drivers/usb/input/hiddev.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/input/hiddev.c b/drivers/usb/input/hiddev.c index 925f5aba06f5..6dd666696178 100644 --- a/drivers/usb/input/hiddev.c +++ b/drivers/usb/input/hiddev.c | |||
@@ -257,9 +257,8 @@ static int hiddev_open(struct inode * inode, struct file * file) { | |||
257 | if (i >= HIDDEV_MINORS || !hiddev_table[i]) | 257 | if (i >= HIDDEV_MINORS || !hiddev_table[i]) |
258 | return -ENODEV; | 258 | return -ENODEV; |
259 | 259 | ||
260 | if (!(list = kmalloc(sizeof(struct hiddev_list), GFP_KERNEL))) | 260 | if (!(list = kzalloc(sizeof(struct hiddev_list), GFP_KERNEL))) |
261 | return -ENOMEM; | 261 | return -ENOMEM; |
262 | memset(list, 0, sizeof(struct hiddev_list)); | ||
263 | 262 | ||
264 | list->hiddev = hiddev_table[i]; | 263 | list->hiddev = hiddev_table[i]; |
265 | list->next = hiddev_table[i]->list; | 264 | list->next = hiddev_table[i]->list; |
@@ -754,9 +753,8 @@ int hiddev_connect(struct hid_device *hid) | |||
754 | if (i == hid->maxcollection && (hid->quirks & HID_QUIRK_HIDDEV) == 0) | 753 | if (i == hid->maxcollection && (hid->quirks & HID_QUIRK_HIDDEV) == 0) |
755 | return -1; | 754 | return -1; |
756 | 755 | ||
757 | if (!(hiddev = kmalloc(sizeof(struct hiddev), GFP_KERNEL))) | 756 | if (!(hiddev = kzalloc(sizeof(struct hiddev), GFP_KERNEL))) |
758 | return -1; | 757 | return -1; |
759 | memset(hiddev, 0, sizeof(struct hiddev)); | ||
760 | 758 | ||
761 | retval = usb_register_dev(hid->intf, &hiddev_class); | 759 | retval = usb_register_dev(hid->intf, &hiddev_class); |
762 | if (retval) { | 760 | if (retval) { |