From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.88, mailfrom: zailiang.sun@intel.com) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by groups.io with SMTP; Wed, 17 Apr 2019 02:21:38 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Apr 2019 02:21:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,361,1549958400"; d="scan'208";a="143622169" Received: from shwdeopenpsi508.ccr.corp.intel.com ([10.239.158.50]) by fmsmga007.fm.intel.com with ESMTP; 17 Apr 2019 02:21:37 -0700 From: "Sun, Zailiang" To: devel@edk2.groups.io Cc: David Wei , Yi Qian Subject: [PATCH] Vlv2TbltDevicePkg: Remove ResetSystem declaration Date: Wed, 17 Apr 2019 17:21:29 +0800 Message-Id: <20190417092129.5952-1-zailiang.sun@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Use MdeModulePkg declaration of ResetSystem function, comment the one in platform source code. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zailiang Sun Cc: David Wei Cc: Yi Qian --- Vlv2TbltDevicePkg/PlatformPei/Platform.c | 1 - Vlv2TbltDevicePkg/PlatformPei/Platform.h | 12 +++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Vlv2TbltDevicePkg/PlatformPei/Platform.c b/Vlv2TbltDevicePkg/PlatformPei/Platform.c index cf47a56a52..eba1dfff30 100644 --- a/Vlv2TbltDevicePkg/PlatformPei/Platform.c +++ b/Vlv2TbltDevicePkg/PlatformPei/Platform.c @@ -18,7 +18,6 @@ Module Name: #include "PlatformBaseAddresses.h" #include "PchAccess.h" #include -#include "Platform.h" #include "PchCommonDefinitions.h" #include #include diff --git a/Vlv2TbltDevicePkg/PlatformPei/Platform.h b/Vlv2TbltDevicePkg/PlatformPei/Platform.h index 4158dd4cf5..e1817b28c6 100644 --- a/Vlv2TbltDevicePkg/PlatformPei/Platform.h +++ b/Vlv2TbltDevicePkg/PlatformPei/Platform.h @@ -47,16 +47,18 @@ UpdateBootMode ( /** This function reset the entire platform, including all processor and devices, and reboots the system. + + Declaration of this function goes to MdeModulePkg/Include/Library/ResetSystemLib.h @param PeiServices General purpose services available to every PEIM. @retval EFI_SUCCESS if it completed successfully. **/ -EFI_STATUS -EFIAPI -ResetSystem ( - IN CONST EFI_PEI_SERVICES **PeiServices - ); +// EFI_STATUS +// EFIAPI +// ResetSystem ( + // IN CONST EFI_PEI_SERVICES **PeiServices + // ); /** This function will be called when MRC is done. -- 2.19.1.windows.1