david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Revert "convert to zalloc"

This reverts commit 7297f04481.
This commit is contained in:
Holger Lubitz 2007-07-07 01:55:45 +02:00
parent a772dc4a2a
commit 50fe2159d5
1 changed files with 2 additions and 1 deletions

View File

@ -90,11 +90,12 @@ static int mcabus_probe ( struct root_device *rootdev ) {
for ( slot = 0 ; slot <= MCA_MAX_SLOT_NR ; slot++ ) {
/* Allocate struct mca_device */
if ( ! mca )
mca = zalloc ( sizeof ( *mca ) );
mca = malloc ( sizeof ( *mca ) );
if ( ! mca ) {
rc = -ENOMEM;
goto err;
}
memset ( mca, 0, sizeof ( *mca ) );
mca->slot = slot;
/* Make sure motherboard setup is off */