Replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <[EMAIL PROTECTED]>
diff -rubp linux-2.6.19-rc5_orig/arch/m68k/amiga/chipram.c
linux-2.6.19-rc5_kzalloc/arch/m68k/amiga/chipram.c
--- linux-2.6.19-rc5_orig/arch/m68k/amiga/chipram.c 2006-11-09
12:16:21.000000000 +0200
+++ linux-2.6.19-rc5_kzalloc/arch/m68k/amiga/chipram.c 2006-11-11
22:44:04.000000000 +0200
@@ -52,10 +52,9 @@ void *amiga_chip_alloc(unsigned long siz
#ifdef DEBUG
printk("amiga_chip_alloc: allocate %ld bytes\n", size);
#endif
- res = kmalloc(sizeof(struct resource), GFP_KERNEL);
+ res = kzalloc(sizeof(struct resource), GFP_KERNEL);
if (!res)
return NULL;
- memset(res, 0, sizeof(struct resource));
res->name = name;
if (allocate_resource(&chipram_res, res, size, 0, UINT_MAX, PAGE_SIZE,
NULL, NULL) < 0) {
diff -rubp linux-2.6.19-rc5_orig/arch/m68k/atari/hades-pci.c
linux-2.6.19-rc5_kzalloc/arch/m68k/atari/hades-pci.c
--- linux-2.6.19-rc5_orig/arch/m68k/atari/hades-pci.c 2006-11-09
12:16:21.000000000 +0200
+++ linux-2.6.19-rc5_kzalloc/arch/m68k/atari/hades-pci.c 2006-11-11
22:44:04.000000000 +0200
@@ -375,10 +375,9 @@ struct pci_bus_info * __init init_hades_
* Allocate memory for bus info structure.
*/
- bus = kmalloc(sizeof(struct pci_bus_info), GFP_KERNEL);
+ bus = kzalloc(sizeof(struct pci_bus_info), GFP_KERNEL);
if (!bus)
return NULL;
- memset(bus, 0, sizeof(struct pci_bus_info));
/*
* Claim resources. The m68k has no separate I/O space, both
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/