summaryrefslogtreecommitdiff
path: root/MdeModulePkg
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg')
-rw-r--r--MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c6
-rw-r--r--MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c b/MdeModulePkg/Library/EdkFvbServiceLib/Ia32/Fvb.c
index 3ec0d6f..1e07c54 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 4679624..d67c94c 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);
}
/**