summaryrefslogtreecommitdiffstats
path: root/SecurityPkg/Library/PlatformSecureLibNull
diff options
context:
space:
mode:
authorsfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524>2012-04-12 07:19:46 +0000
committersfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524>2012-04-12 07:19:46 +0000
commit3c48e853eb6e6e85a4429b717620cfa9a5218867 (patch)
treea5cda8207e2d4fe79043b13dd092339bbeb4e6b4 /SecurityPkg/Library/PlatformSecureLibNull
parentfe3396514022ec798f304b9e28d4ac6a04e01946 (diff)
downloadedk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.tar.gz
edk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.tar.bz2
edk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.zip
Update the default return value of UserPhysicalPresent to TRUE.
Signed-off-by: Fu, Siyuan <siyuan.fu@intel.com> Reviewed-by: Dong, Guo <guo.dong@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13191 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg/Library/PlatformSecureLibNull')
-rw-r--r--SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c b/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c
index cfce97e284..f222e7cb42 100644
--- a/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c
+++ b/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c
@@ -35,5 +35,5 @@ UserPhysicalPresent (
VOID
)
{
- return FALSE;
+ return TRUE;
}