summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/BdsDxe
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-09 08:57:49 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-09 08:57:49 +0000
commit78f64f281ae77848694035bd878caffdd19c1f59 (patch)
treecbc90d853ed8e1d3e2e5a9af1074d724e73dba89 /MdeModulePkg/Universal/BdsDxe
parent4ad9b09e8893f2fe8172f94bc7104b93bf9b8bc4 (diff)
downloadedk2-platforms-78f64f281ae77848694035bd878caffdd19c1f59.tar.xz
ADD EFIAPI for library function.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5435 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/BdsDxe')
-rw-r--r--MdeModulePkg/Universal/BdsDxe/BootMaint/BBSsupport.c49
1 files changed, 23 insertions, 26 deletions
diff --git a/MdeModulePkg/Universal/BdsDxe/BootMaint/BBSsupport.c b/MdeModulePkg/Universal/BdsDxe/BootMaint/BBSsupport.c
index 853bede943..b49c93c6ad 100644
--- a/MdeModulePkg/Universal/BdsDxe/BootMaint/BBSsupport.c
+++ b/MdeModulePkg/Universal/BdsDxe/BootMaint/BBSsupport.c
@@ -435,16 +435,18 @@ BdsIsLegacyBootOption (
}
/**
- EDES_TODO: Add function description.
- @param OptionNumber EDES_TODO: Add parameter description
- @param BootOrder EDES_TODO: Add parameter description
- @param BootOrderSize EDES_TODO: Add parameter description
+ Delete boot option specified by OptionNumber and adjust the boot order.
- @return EDES_TODO: Add description for return value
+ @param OptionNumber The boot option to be deleted.
+ @param BootOrder Boot order list to be adjusted by remove this boot option.
+ @param BootOrderSize The size of Boot order list will be modified.
+
+ @retval EFI_SUCCESS The boot option is deleted successfully.
**/
EFI_STATUS
+EFIAPI
BdsDeleteBootOption (
IN UINTN OptionNumber,
IN OUT UINT16 *BootOrder,
@@ -486,20 +488,14 @@ BdsDeleteBootOption (
}
/**
-
Delete all the invalid legacy boot options.
-
- @param VOID EDES_TODO: Add parameter description
-
- @retval EFI_SUCCESS All invalide legacy boot options are deleted.
- @retval EFI_OUT_OF_RESOURCES Fail to allocate necessary memory.
- @retval EFI_NOT_FOUND Fail to retrive variable of boot order.
- @retval Other Error occurs while setting variable or locating
- protocol.
-
+ @retval EFI_SUCCESS All invalide legacy boot options are deleted.
+ @retval EFI_OUT_OF_RESOURCES Fail to allocate necessary memory.
+ @retval EFI_NOT_FOUND Fail to retrive variable of boot order.
**/
EFI_STATUS
+EFIAPI
BdsDeleteAllInvalidLegacyBootOptions (
VOID
)
@@ -750,14 +746,12 @@ BdsCreateOneLegacyBootOption (
Add the legacy boot options from BBS table if they do not exist.
-
- @param VOID EDES_TODO: Add parameter description
-
- @retval EFI_SUCCESS The boot options are added successfully or they are already in boot options.
- @retval others An error occurred when creating legacy boot options.
+ @retval EFI_SUCCESS The boot options are added successfully
+ or they are already in boot options.
**/
EFI_STATUS
+EFIAPI
BdsAddNonExistingLegacyBootOptions (
VOID
)
@@ -1029,14 +1023,15 @@ BdsCreateDevOrder (
}
/**
- EDES_TODO: Add function description.
- @param VOID EDES_TODO: Add parameter description
+ Add the legacy boot devices from BBS table into
+ the legacy device boot order.
- @return EDES_TODO: Add description for return value
+ @retval EFI_SUCCESS The boot devices are added successfully.
**/
EFI_STATUS
+EFIAPI
BdsUpdateLegacyDevOrder (
VOID
)
@@ -1586,14 +1581,16 @@ PrintBbsTable (
}
/**
- EDES_TODO: Add function description.
- @param Entry EDES_TODO: Add parameter description
+ Set the boot priority for BBS entries based on boot option entry and boot order.
- @return EDES_TODO: Add description for return value
+ @param Entry The boot option is to be checked for refresh BBS table.
+
+ @retval EFI_SUCCESS The boot priority for BBS entries is refreshed successfully.
**/
EFI_STATUS
+EFIAPI
BdsRefreshBbsTableForBoot (
IN BDS_COMMON_OPTION *Entry
)