[PATCH] kzalloc() conversion in arch/ppc
This converts arch/ppc to kzalloc usage. Crosscompile tested with allyesconfig. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:

committed by
Paul Mackerras

parent
0f6be7b77c
commit
d116fe5aea
@@ -451,10 +451,9 @@ ocp_driver_init(void)
|
||||
DBG(("ocp: ocp_driver_init()...\n"));
|
||||
|
||||
/* Allocate/register primary OCP bus */
|
||||
ocp_bus = kmalloc(sizeof(struct device), GFP_KERNEL);
|
||||
ocp_bus = kzalloc(sizeof(struct device), GFP_KERNEL);
|
||||
if (ocp_bus == NULL)
|
||||
return 1;
|
||||
memset(ocp_bus, 0, sizeof(struct device));
|
||||
strcpy(ocp_bus->bus_id, "ocp");
|
||||
|
||||
bus_register(&ocp_bus_type);
|
||||
|
Reference in New Issue
Block a user