diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2005-09-06 15:18:33 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 16:57:45 -0700 |
commit | a97e148a8b8da8b04bc3e18ceb824a8f5f56d567 (patch) | |
tree | 6839a014f4315988e4123e7de68ca35d5585ca09 /drivers/input/gameport/emu10k1-gp.c | |
parent | 874ca6cd3fb454f4dfafd2bbb6c6893303227c3f (diff) | |
download | kernel_samsung_espresso10-a97e148a8b8da8b04bc3e18ceb824a8f5f56d567.zip kernel_samsung_espresso10-a97e148a8b8da8b04bc3e18ceb824a8f5f56d567.tar.gz kernel_samsung_espresso10-a97e148a8b8da8b04bc3e18ceb824a8f5f56d567.tar.bz2 |
[PATCH] input: convert kcalloc to kzalloc
This patch converts kcalloc(1, ...) calls to use the new kzalloc() function.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Vojtech Pavlik <vojtech@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/input/gameport/emu10k1-gp.c')
-rw-r--r-- | drivers/input/gameport/emu10k1-gp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/gameport/emu10k1-gp.c b/drivers/input/gameport/emu10k1-gp.c index a011803..462f8d3 100644 --- a/drivers/input/gameport/emu10k1-gp.c +++ b/drivers/input/gameport/emu10k1-gp.c @@ -75,7 +75,7 @@ static int __devinit emu_probe(struct pci_dev *pdev, const struct pci_device_id if (!request_region(ioport, iolen, "emu10k1-gp")) return -EBUSY; - emu = kcalloc(1, sizeof(struct emu), GFP_KERNEL); + emu = kzalloc(sizeof(struct emu), GFP_KERNEL); port = gameport_allocate_port(); if (!emu || !port) { printk(KERN_ERR "emu10k1-gp: Memory allocation failed\n"); |