From: qhuang8 Date: Thu, 27 Nov 2008 13:22:23 +0000 (+0000) Subject: Fix the parameter typo, it should confirm to UEFI spec. X-Git-Tag: edk2-stable201903~19480 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=008dfe313e0a2ab27a7568332e45e817bcbede0a Fix the parameter typo, it should confirm to UEFI spec. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6765 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdePkg/Include/Library/UefiRuntimeLib.h b/MdePkg/Include/Library/UefiRuntimeLib.h index 54be1017df..3d5f721012 100644 --- a/MdePkg/Include/Library/UefiRuntimeLib.h +++ b/MdePkg/Include/Library/UefiRuntimeLib.h @@ -344,7 +344,7 @@ EfiResetSystem ( IN EFI_RESET_TYPE ResetType, IN EFI_STATUS ResetStatus, IN UINTN DataSize, - IN CHAR16 *ResetData + IN VOID *ResetData OPTIONAL ); /** diff --git a/MdePkg/Library/UefiRuntimeLib/RuntimeService.c b/MdePkg/Library/UefiRuntimeLib/RuntimeService.c index 1d2c5d413c..4626606292 100644 --- a/MdePkg/Library/UefiRuntimeLib/RuntimeService.c +++ b/MdePkg/Library/UefiRuntimeLib/RuntimeService.c @@ -55,7 +55,7 @@ EfiResetSystem ( IN EFI_RESET_TYPE ResetType, IN EFI_STATUS ResetStatus, IN UINTN DataSize, - IN CHAR16 *ResetData + IN VOID *ResetData OPTIONAL ) { mRT->ResetSystem (ResetType, ResetStatus, DataSize, ResetData);