From 0a6e1dd2cfe6d28b2bf73458e776f280c38fc12c Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Mon, 7 Dec 2015 09:03:57 +0000 Subject: [PATCH] SecurityPkg: AuthVariableLib: Fix GCC compile error Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel Reviewed-by: Chao Zhang git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19140 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Library/AuthVariableLib/AuthService.c | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/SecurityPkg/Library/AuthVariableLib/AuthService.c b/SecurityPkg/Library/AuthVariableLib/AuthService.c index 5546c2e5c9..9a09eaed60 100644 --- a/SecurityPkg/Library/AuthVariableLib/AuthService.c +++ b/SecurityPkg/Library/AuthVariableLib/AuthService.c @@ -555,10 +555,10 @@ TransitionFromAuditMode( ) { EFI_STATUS Status; - UINT8 *AuditVarData; - UINT8 *DeployedVarData; - UINT8 *SetupVarData; - UINT8 *SecureBootVarData; + VOID *AuditVarData; + VOID *DeployedVarData; + VOID *SetupVarData; + VOID *SecureBootVarData; UINT8 SecureBootEnable; UINTN DataSize; @@ -693,9 +693,9 @@ TransitionFromDeployedMode( ) { EFI_STATUS Status; - UINT8 *DeployedVarData; - UINT8 *SetupVarData; - UINT8 *SecureBootVarData; + VOID *DeployedVarData; + VOID *SetupVarData; + VOID *SecureBootVarData; UINT8 SecureBootEnable; UINTN DataSize; @@ -835,11 +835,11 @@ TransitionFromUserMode( ) { EFI_STATUS Status; - UINT8 *AuditVarData; - UINT8 *DeployedVarData; - UINT8 *SetupVarData; - UINT8 *PkVarData; - UINT8 *SecureBootVarData; + VOID *AuditVarData; + VOID *DeployedVarData; + VOID *SetupVarData; + VOID *PkVarData; + VOID *SecureBootVarData; UINT8 SecureBootEnable; UINTN DataSize; VARIABLE_ENTRY_CONSISTENCY VariableEntry; @@ -1034,9 +1034,9 @@ TransitionFromSetupMode( ) { EFI_STATUS Status; - UINT8 *AuditVarData; - UINT8 *SetupVarData; - UINT8 *SecureBootVarData; + VOID *AuditVarData; + VOID *SetupVarData; + VOID *SecureBootVarData; UINT8 SecureBootEnable; UINTN DataSize; @@ -1746,7 +1746,7 @@ ProcessSecureBootModeVar ( ) { EFI_STATUS Status; - UINT8 *VarData; + VOID *VarData; UINTN VarDataSize; // @@ -1801,7 +1801,7 @@ ProcessSecureBootModeVar ( // // If AuditMode/DeployedMode is assigned same value. Simply return EFI_SUCCESS // - if (*VarData == *(UINT8 *)Data) { + if (*(UINT8 *)VarData == *(UINT8 *)Data) { return EFI_SUCCESS; } -- 2.39.2