diff options
author | Jeff Fan <jeff.fan@intel.com> | 2016-07-02 12:01:02 +0800 |
---|---|---|
committer | Michael Kinney <michael.d.kinney@intel.com> | 2016-07-14 08:58:04 -0700 |
commit | 51773d49de84e7f1d7b1f1c39c45a7c0fb4198d5 (patch) | |
tree | 028931a91326ad57811c5db065f6803bc04b838d /UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h | |
parent | a46a4c90d33dc7397b0f6f187008cbc385a1e051 (diff) | |
download | edk2-51773d49de84e7f1d7b1f1c39c45a7c0fb4198d5.tar.gz |
UefiCpuPkg/PiSmmCpuDxeSmm: Clean up CheckFeatureSupported()
Removed EFIAPI and parameter from CheckFeatureSupported() and removed
CheckProcessorFeature() totally.
Cc: Michael Kinney <michael.d.kinney@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
Regression-tested-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h')
-rw-r--r-- | UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h b/UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h index 328d2b9758..13ff675ba2 100644 --- a/UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.h @@ -90,13 +90,10 @@ PageFaultIdtHandlerSmmProfile ( /**
Check if XD feature is supported by a processor.
- @param[in,out] Buffer The pointer to private data buffer.
-
**/
VOID
-EFIAPI
CheckFeatureSupported (
- IN OUT VOID *Buffer
+ VOID
);
/**
@@ -117,15 +114,6 @@ InitPaging ( VOID
);
-/**
- Check if XD and BTS features are supported by all processors.
-
-**/
-VOID
-CheckProcessorFeature (
- VOID
- );
-
extern BOOLEAN mXdSupported;
extern BOOLEAN mXdEnabled;
|