Update network drivers to use FreePool() instead of gBS->FreePool().

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9424 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
xdu2
2009-11-13 06:13:59 +00:00
parent 2f3c9af25e
commit 766c7483c3
42 changed files with 192 additions and 192 deletions

View File

@@ -168,9 +168,9 @@ IScsiUpdateDeviceList (
gRT->SetVariable (MacString, &mIScsiCHAPAuthInfoGuid, 0, 0, NULL);
}
gBS->FreePool (DeviceList);
FreePool (DeviceList);
} else if (Status != EFI_NOT_FOUND) {
gBS->FreePool (Handles);
FreePool (Handles);
return Status;
}
//
@@ -197,8 +197,8 @@ IScsiUpdateDeviceList (
DeviceList
);
gBS->FreePool (DeviceList);
gBS->FreePool (Handles);
FreePool (DeviceList);
FreePool (Handles);
return Status;
}
@@ -400,7 +400,7 @@ IScsiFormExtractConfig (
Results,
Progress
);
gBS->FreePool (IfrNvData);
FreePool (IfrNvData);
return Status;
}
@@ -873,7 +873,7 @@ IScsiConfigUpdateForm (
mNumberOfIScsiDevices--;
RemoveEntryList (&ConfigFormEntry->Link);
gBS->FreePool (ConfigFormEntry);
FreePool (ConfigFormEntry);
}
//
// Allocate space for creation of Buffer
@@ -1055,7 +1055,7 @@ IScsiConfigFormUnload (
&mCallbackInfo->ConfigAccess,
NULL
);
gBS->FreePool (mCallbackInfo);
FreePool (mCallbackInfo);
return EFI_SUCCESS;
}