diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:49:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:49:19 -0400 |
commit | 9c8680e2cfbb60d5075f8caaf9d98276120bcc78 (patch) | |
tree | 1957cff26a46271d5b63a3c209629ddd7f9fe124 /drivers/input/joydev.c | |
parent | f900e5824a44ab65437b4f7e7c610b72f94820c5 (diff) | |
parent | b9ec4e109d7a342e83e1210e05797222e36555c3 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/dtor/input
* master.kernel.org:/pub/scm/linux/kernel/git/dtor/input: (26 commits)
Input: add support for Braille devices
Input: synaptics - limit rate to 40pps on Toshiba Protege M300
Input: gamecon - add SNES mouse support
Input: make modalias code respect allowed buffer size
Input: convert /proc handling to seq_file
Input: limit attributes' output to PAGE_SIZE
Input: gameport - fix memory leak
Input: serio - fix memory leak
Input: zaurus keyboard driver updates
Input: i8042 - fix logic around pnp_register_driver()
Input: ns558 - fix logic around pnp_register_driver()
Input: pcspkr - separate device and driver registration
Input: atkbd - allow disabling on X86_PC (if EMBEDDED)
Input: atkbd - disable softrepeat for dumb keyboards
Input: atkbd - fix complaints about 'releasing unknown key 0x7f'
Input: HID - fix duplicate key mapping for Logitech UltraX remote
Input: use kzalloc() throughout the code
Input: fix input_free_device() implementation
Input: initialize serio and gameport at subsystem level
Input: uinput - semaphore to mutex conversion
...
Diffstat (limited to 'drivers/input/joydev.c')
-rw-r--r-- | drivers/input/joydev.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/input/joydev.c b/drivers/input/joydev.c index 20e2972b9204..949bdcef8c2b 100644 --- a/drivers/input/joydev.c +++ b/drivers/input/joydev.c | |||
@@ -171,9 +171,8 @@ static int joydev_open(struct inode *inode, struct file *file) | |||
171 | if (i >= JOYDEV_MINORS || !joydev_table[i]) | 171 | if (i >= JOYDEV_MINORS || !joydev_table[i]) |
172 | return -ENODEV; | 172 | return -ENODEV; |
173 | 173 | ||
174 | if (!(list = kmalloc(sizeof(struct joydev_list), GFP_KERNEL))) | 174 | if (!(list = kzalloc(sizeof(struct joydev_list), GFP_KERNEL))) |
175 | return -ENOMEM; | 175 | return -ENOMEM; |
176 | memset(list, 0, sizeof(struct joydev_list)); | ||
177 | 176 | ||
178 | list->joydev = joydev_table[i]; | 177 | list->joydev = joydev_table[i]; |
179 | list_add_tail(&list->node, &joydev_table[i]->list); | 178 | list_add_tail(&list->node, &joydev_table[i]->list); |
@@ -457,9 +456,8 @@ static struct input_handle *joydev_connect(struct input_handler *handler, struct | |||
457 | return NULL; | 456 | return NULL; |
458 | } | 457 | } |
459 | 458 | ||
460 | if (!(joydev = kmalloc(sizeof(struct joydev), GFP_KERNEL))) | 459 | if (!(joydev = kzalloc(sizeof(struct joydev), GFP_KERNEL))) |
461 | return NULL; | 460 | return NULL; |
462 | memset(joydev, 0, sizeof(struct joydev)); | ||
463 | 461 | ||
464 | INIT_LIST_HEAD(&joydev->list); | 462 | INIT_LIST_HEAD(&joydev->list); |
465 | init_waitqueue_head(&joydev->wait); | 463 | init_waitqueue_head(&joydev->wait); |