Remove CommonHeader.h from IsaBusDxe.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3176 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -40,6 +40,44 @@ EFI_DRIVER_BINDING_PROTOCOL gIsaBusControllerDriver = {
|
||||
NULL
|
||||
};
|
||||
|
||||
/**
|
||||
The user Entry Point for module IsaBus. The user code starts with this function.
|
||||
|
||||
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
||||
@param[in] SystemTable A pointer to the EFI System Table.
|
||||
|
||||
@retval EFI_SUCCESS The entry point is executed successfully.
|
||||
@retval other Some error occurs when executing this entry point.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
InitializeIsaBus(
|
||||
IN EFI_HANDLE ImageHandle,
|
||||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
|
||||
//
|
||||
// Install driver model protocol(s).
|
||||
//
|
||||
Status = EfiLibInstallAllDriverProtocols (
|
||||
ImageHandle,
|
||||
SystemTable,
|
||||
&gIsaBusControllerDriver,
|
||||
ImageHandle,
|
||||
&gIsaBusComponentName,
|
||||
NULL,
|
||||
NULL
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
IsaBusControllerDriverSupported (
|
||||
@ -181,11 +219,6 @@ IsaBusControllerDriverStart (
|
||||
EFI_RESOURCE_ALLOC_FAILURE_ERROR_DATA AllocFailExtendedData;
|
||||
EFI_DEVICE_PATH_PROTOCOL *DevicePathData;
|
||||
|
||||
BootScriptSaveInformationAsciiString (
|
||||
EFI_ACPI_S3_RESUME_SCRIPT_TABLE,
|
||||
"IsaBusBindingStartBegin"
|
||||
);
|
||||
|
||||
//
|
||||
// Initialize status code structure
|
||||
//
|
||||
@ -378,11 +411,6 @@ IsaBusControllerDriverStart (
|
||||
|
||||
} while (TRUE);
|
||||
|
||||
BootScriptSaveInformationAsciiString (
|
||||
EFI_ACPI_S3_RESUME_SCRIPT_TABLE,
|
||||
"IsaBusBindingStartEnd"
|
||||
);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user