diff options
author | sfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-12 07:19:46 +0000 |
---|---|---|
committer | sfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-12 07:19:46 +0000 |
commit | 3c48e853eb6e6e85a4429b717620cfa9a5218867 (patch) | |
tree | a5cda8207e2d4fe79043b13dd092339bbeb4e6b4 /SecurityPkg | |
parent | fe3396514022ec798f304b9e28d4ac6a04e01946 (diff) | |
download | edk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.zip edk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.tar.gz edk2-3c48e853eb6e6e85a4429b717620cfa9a5218867.tar.bz2 |
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')
-rw-r--r-- | SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c b/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c index cfce97e..f222e7c 100644 --- a/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c +++ b/SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c @@ -35,5 +35,5 @@ UserPhysicalPresent ( VOID
)
{
- return FALSE;
+ return TRUE;
}
|