]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c
SecurityPkg: Clean up source files
[mirror_edk2.git] / SecurityPkg / Library / PlatformSecureLibNull / PlatformSecureLibNull.c
index 8dc07ec74a10967a7cc7e65ca56a5989a95b591b..0c6ded22f3e6d330889a5eb7000756de6bab28ea 100644 (file)
@@ -1,16 +1,16 @@
 /** @file\r
-  NULL PlatformSecureLib instance does NOT really detect whether a physical present \r
+  NULL PlatformSecureLib instance does NOT really detect whether a physical present\r
   user exists but return TRUE directly. This instance can be used to verify security\r
   related features during platform enabling and development. It should be replaced\r
   by a platform-specific method(e.g. Button pressed) in a real platform for product.\r
 \r
-Copyright (c) 2011 - 2016, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials \r
-are licensed and made available under the terms and conditions of the BSD License \r
-which accompanies this distribution.  The full text of the license may be found at \r
+Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>\r
+This program and the accompanying materials\r
+are licensed and made available under the terms and conditions of the BSD License\r
+which accompanies this distribution.  The full text of the license may be found at\r
 http://opensource.org/licenses/bsd-license.php\r
 \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
 **/\r
@@ -20,7 +20,7 @@ BOOLEAN       mUserPhysicalPresence      = FALSE;
 /**\r
 \r
   This function provides a platform-specific method to detect whether the platform\r
-  is operating by a physically present user. \r
+  is operating by a physically present user.\r
 \r
   Programmatic changing of platform security policy (such as disable Secure Boot,\r
   or switch between Standard/Custom Secure Boot mode) MUST NOT be possible during\r
@@ -29,7 +29,7 @@ BOOLEAN       mUserPhysicalPresence      = FALSE;
 \r
   NOTE THAT: This function cannot depend on any EFI Variable Service since they are\r
   not available when this function is called in AuthenticateVariable driver.\r
-  \r
+\r
   @retval  TRUE       The platform is operated by a physically present user.\r
   @retval  FALSE      The platform is NOT operated by a physically present user.\r
 \r
@@ -40,7 +40,7 @@ UserPhysicalPresent (
   VOID\r
   )\r
 {\r
-  return mUserPhysicalPresence;  \r
+  return mUserPhysicalPresence;\r
 }\r
 \r
 \r