diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-14 00:09:16 -0500 |
---|---|---|
committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2006-03-14 00:09:16 -0500 |
commit | b39787a972042ded183343b177d9c595b5704575 (patch) | |
tree | ff0336c45ff4f8bbb3e64af5cc16bcfe75fbb54b /drivers/input/evdev.c | |
parent | 493a7e0d5614c30e1f3e56d59ab774300a2609f2 (diff) |
Input: use kzalloc() throughout the code
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/evdev.c')
-rw-r--r-- | drivers/input/evdev.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c index 745979f33dc2..a34e3d91d9ed 100644 --- a/drivers/input/evdev.c +++ b/drivers/input/evdev.c | |||
@@ -130,9 +130,8 @@ static int evdev_open(struct inode * inode, struct file * file) | |||
130 | if ((accept_err = input_accept_process(&(evdev_table[i]->handle), file))) | 130 | if ((accept_err = input_accept_process(&(evdev_table[i]->handle), file))) |
131 | return accept_err; | 131 | return accept_err; |
132 | 132 | ||
133 | if (!(list = kmalloc(sizeof(struct evdev_list), GFP_KERNEL))) | 133 | if (!(list = kzalloc(sizeof(struct evdev_list), GFP_KERNEL))) |
134 | return -ENOMEM; | 134 | return -ENOMEM; |
135 | memset(list, 0, sizeof(struct evdev_list)); | ||
136 | 135 | ||
137 | list->evdev = evdev_table[i]; | 136 | list->evdev = evdev_table[i]; |
138 | list_add_tail(&list->node, &evdev_table[i]->list); | 137 | list_add_tail(&list->node, &evdev_table[i]->list); |
@@ -609,9 +608,8 @@ static struct input_handle *evdev_connect(struct input_handler *handler, struct | |||
609 | return NULL; | 608 | return NULL; |
610 | } | 609 | } |
611 | 610 | ||
612 | if (!(evdev = kmalloc(sizeof(struct evdev), GFP_KERNEL))) | 611 | if (!(evdev = kzalloc(sizeof(struct evdev), GFP_KERNEL))) |
613 | return NULL; | 612 | return NULL; |
614 | memset(evdev, 0, sizeof(struct evdev)); | ||
615 | 613 | ||
616 | INIT_LIST_HEAD(&evdev->list); | 614 | INIT_LIST_HEAD(&evdev->list); |
617 | init_waitqueue_head(&evdev->wait); | 615 | init_waitqueue_head(&evdev->wait); |