diff options
Diffstat (limited to 'drivers/char/keyboard.c')
-rw-r--r-- | drivers/char/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/keyboard.c b/drivers/char/keyboard.c index bf2339c869ea..ca234ce8004a 100644 --- a/drivers/char/keyboard.c +++ b/drivers/char/keyboard.c | |||
@@ -1297,9 +1297,9 @@ static struct input_handle *kbd_connect(struct input_handler *handler, | |||
1297 | if (i == BTN_MISC && !test_bit(EV_SND, dev->evbit)) | 1297 | if (i == BTN_MISC && !test_bit(EV_SND, dev->evbit)) |
1298 | return NULL; | 1298 | return NULL; |
1299 | 1299 | ||
1300 | if (!(handle = kmalloc(sizeof(struct input_handle), GFP_KERNEL))) | 1300 | handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL); |
1301 | if (!handle) | ||
1301 | return NULL; | 1302 | return NULL; |
1302 | memset(handle, 0, sizeof(struct input_handle)); | ||
1303 | 1303 | ||
1304 | handle->dev = dev; | 1304 | handle->dev = dev; |
1305 | handle->handler = handler; | 1305 | handle->handler = handler; |