From d3a58e2ddfb301e90cdeb9d8996bc24d9b9ae2ea Mon Sep 17 00:00:00 2001 From: qwang12 Date: Wed, 22 Aug 2007 09:33:34 +0000 Subject: Update the code to match spec for EfiFvbSetVolumeAttributes API. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3690 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c | 6 +++--- MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'MdeModulePkg') diff --git a/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c b/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c index 3ec0d6f9eb..1e07c54ece 100644 --- a/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c +++ b/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c @@ -480,8 +480,8 @@ EfiFvbGetVolumeAttributes ( **/ EFI_STATUS EfiFvbSetVolumeAttributes ( - IN UINTN Instance, - IN EFI_FVB_ATTRIBUTES Attributes + IN UINTN Instance, + IN OUT EFI_FVB_ATTRIBUTES *Attributes ) { if (Instance >= mFvbCount) { @@ -492,7 +492,7 @@ EfiFvbSetVolumeAttributes ( return EFI_INVALID_PARAMETER; } - return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, &Attributes); + return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, Attributes); } /** diff --git a/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c b/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c index 4679624e70..d67c94ccd2 100644 --- a/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c +++ b/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c @@ -479,8 +479,8 @@ EfiFvbGetVolumeAttributes ( **/ EFI_STATUS EfiFvbSetVolumeAttributes ( - IN UINTN Instance, - IN EFI_FVB_ATTRIBUTES Attributes + IN UINTN Instance, + IN OUT EFI_FVB_ATTRIBUTES *Attributes ) { if (Instance >= mFvbCount) { @@ -491,7 +491,7 @@ EfiFvbSetVolumeAttributes ( return EFI_INVALID_PARAMETER; } - return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, &Attributes); + return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, Attributes); } /** -- cgit v1.2.3