diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-07 04:43:19 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-07 04:43:19 +0000 |
commit | f7cdf5cdd38d0b5740046c26c7ca22f3d19ecb41 (patch) | |
tree | c2b1b96cda20ae8e8c48f3b0a7972bf49f42db2b /IntelFrameworkModulePkg/Library/PlatformBdsLibNull | |
parent | 2ddf8375591d190aaca9360adfa762af0e829185 (diff) | |
download | edk2-platforms-f7cdf5cdd38d0b5740046c26c7ca22f3d19ecb41.tar.xz |
Remove EFI_BDS_ARCH_PROTOCOL_INSTANCE from PlatformBdsLib.h and BdsDxe module
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8491 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/PlatformBdsLibNull')
-rw-r--r-- | IntelFrameworkModulePkg/Library/PlatformBdsLibNull/BdsPlatform.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/IntelFrameworkModulePkg/Library/PlatformBdsLibNull/BdsPlatform.c b/IntelFrameworkModulePkg/Library/PlatformBdsLibNull/BdsPlatform.c index f202c9778a..855faf6ee0 100644 --- a/IntelFrameworkModulePkg/Library/PlatformBdsLibNull/BdsPlatform.c +++ b/IntelFrameworkModulePkg/Library/PlatformBdsLibNull/BdsPlatform.c @@ -21,16 +21,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. Platform Bds init. Include the platform firmware vendor, revision
and so crc check.
- @param PrivateData The EFI_BDS_ARCH_PROTOCOL_INSTANCE instance
-
**/
VOID
EFIAPI
PlatformBdsInit (
- IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData
+ VOID
)
{
- return;
}
/**
@@ -62,7 +59,6 @@ PlatformBdsConnectSequence ( VOID
)
{
- return;
}
/**
@@ -77,7 +73,6 @@ PlatformBdsGetDriverOption ( IN OUT LIST_ENTRY *BdsDriverLists
)
{
- return;
}
/**
@@ -94,7 +89,6 @@ PlatformBdsDiagnostics ( IN BOOLEAN QuietBoot
)
{
- return;
}
/**
@@ -102,7 +96,6 @@ PlatformBdsDiagnostics ( is driven by boot mode. IBV/OEM can customize this code for their specific
policy action.
- @param PrivateData The EFI_BDS_ARCH_PROTOCOL_INSTANCE instance
@param DriverOptionList The header of the driver option link list
@param BootOptionList The header of the boot option link list
@@ -110,12 +103,10 @@ PlatformBdsDiagnostics ( VOID
EFIAPI
PlatformBdsPolicyBehavior (
- IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData,
IN LIST_ENTRY *DriverOptionList,
IN LIST_ENTRY *BootOptionList
)
{
- return ;
}
/**
@@ -133,7 +124,6 @@ PlatformBdsBootSuccess ( IN BDS_COMMON_OPTION *Option
)
{
- return;
}
/**
@@ -154,7 +144,6 @@ PlatformBdsBootFail ( IN UINTN ExitDataSize
)
{
- return;
}
/**
|