2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-18 21:43:14 +00:00

Revert "convert to zalloc"

This reverts commit 3414fd8df8c514947254fd065d407e8db115221f.
This commit is contained in:
Holger Lubitz 2007-07-07 01:56:27 +02:00
parent ac323c5e4d
commit e3c72a3438

View File

@ -105,11 +105,12 @@ static int isabus_probe ( struct root_device *rootdev ) {
ioidx <= ISA_IOIDX_MAX ( driver ) ; ioidx++ ) {
/* Allocate struct isa_device */
if ( ! isa )
isa = zalloc ( sizeof ( *isa ) );
isa = malloc ( sizeof ( *isa ) );
if ( ! isa ) {
rc = -ENOMEM;
goto err;
}
memset ( isa, 0, sizeof ( *isa ) );
isa->driver = driver;
isa->ioaddr = ISA_IOADDR ( driver, ioidx );