diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-10 02:38:39 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-10 02:38:39 +0000 |
commit | 947a573ada499a7b1533d91f015327cc07605ff7 (patch) | |
tree | 7f2160b9eea2428fa9d735b0f803d16f2ecf97e4 /UefiCpuPkg/Include/Library | |
parent | c4ae2792f250bce176cf68ecdd64d4bf246c3fb0 (diff) | |
download | edk2-platforms-947a573ada499a7b1533d91f015327cc07605ff7.tar.xz |
Add Checking for MTRR existence.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10223 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UefiCpuPkg/Include/Library')
-rw-r--r-- | UefiCpuPkg/Include/Library/MtrrLib.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/UefiCpuPkg/Include/Library/MtrrLib.h b/UefiCpuPkg/Include/Library/MtrrLib.h index e2f2491eee..66e131d4fd 100644 --- a/UefiCpuPkg/Include/Library/MtrrLib.h +++ b/UefiCpuPkg/Include/Library/MtrrLib.h @@ -314,4 +314,16 @@ VOID MtrrDebugPrintAllMtrrs (
);
+/**
+ Checks if MTRR is supported.
+
+ @retval TRUE MTRR is supported.
+ @retval FALSE MTRR is not supported.
+
+**/
+BOOLEAN
+IsMtrrSupported (
+ VOID
+ );
+
#endif // _MTRR_LIB_H_
|