From 008dfe313e0a2ab27a7568332e45e817bcbede0a Mon Sep 17 00:00:00 2001 From: qhuang8 Date: Thu, 27 Nov 2008 13:22:23 +0000 Subject: 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 --- MdePkg/Include/Library/UefiRuntimeLib.h | 2 +- MdePkg/Library/UefiRuntimeLib/RuntimeService.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'MdePkg') 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); -- cgit v1.2.3