diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-06-15 15:34:11 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-07-03 15:40:57 +0800 |
commit | 34861f432320100dfe09522018d4cd77a807c86c (patch) | |
tree | f4fa1b6d721ad9811141182cad8e9bd071eb5f38 /MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c | |
parent | 342470a6f83a29002ddcf99221343d2e5261eb6b (diff) | |
download | edk2-34861f432320100dfe09522018d4cd77a807c86c.tar.gz edk2-34861f432320100dfe09522018d4cd77a807c86c.tar.bz2 edk2-34861f432320100dfe09522018d4cd77a807c86c.zip |
MdeModulePkg/ResetSystem: Remove unnecessary global variable
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Diffstat (limited to 'MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c')
-rw-r--r-- | MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c index f61e65e151..64f2da5ce9 100644 --- a/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c +++ b/MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.c @@ -1,7 +1,7 @@ /** @file
Reset Architectural Protocol implementation
- Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -15,11 +15,6 @@ #include "ResetSystem.h"
-//
-// The handle onto which the Reset Architectural Protocol is installed
-//
-EFI_HANDLE mResetHandle = NULL;
-
/**
The driver's entry point.
@@ -40,6 +35,7 @@ InitializeResetSystem ( )
{
EFI_STATUS Status;
+ EFI_HANDLE Handle;
//
// Make sure the Reset Architectural Protocol is not already installed in the system
@@ -54,8 +50,9 @@ InitializeResetSystem ( //
// Now install the Reset RT AP on a new handle
//
+ Handle = NULL;
Status = gBS->InstallMultipleProtocolInterfaces (
- &mResetHandle,
+ &Handle,
&gEfiResetArchProtocolGuid,
NULL,
NULL
|