]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/FileExplorerDxe/FileExplorerDxe.c
MdeModulePkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Universal / FileExplorerDxe / FileExplorerDxe.c
index 7a60bbe081ec18f689f2afff9a7a16ceef0fc4e6..8a7bbc9a1156fe4beaa0127266601b80e6f5d322 100644 (file)
@@ -2,13 +2,7 @@
   This driver produces file explorer protocol layered on top of the FileExplorerLib from the MdeModulePkg.\r
 \r
 Copyright (c) 2015, 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
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -22,7 +16,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 EFI_HANDLE  mFileExplorerThunkHandle = NULL;\r
 \r
-CONST EFI_FILE_EXPLORER_PROTOCOL mFileExplorerProtocol = {\r
+CONST EFI_FILE_EXPLORER_PROTOCOL  mFileExplorerProtocol = {\r
   ChooseFile\r
 };\r
 \r
@@ -41,15 +35,16 @@ CONST EFI_FILE_EXPLORER_PROTOCOL mFileExplorerProtocol = {
 EFI_STATUS\r
 EFIAPI\r
 FileExplorerEntryPoint (\r
-  IN EFI_HANDLE           ImageHandle,\r
-  IN EFI_SYSTEM_TABLE     *SystemTable\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
   EFI_STATUS  Status;\r
 \r
   Status = gBS->InstallMultipleProtocolInterfaces (\r
                   &mFileExplorerThunkHandle,\r
-                  &gEfiFileExplorerProtocolGuid, &mFileExplorerProtocol,\r
+                  &gEfiFileExplorerProtocolGuid,\r
+                  &mFileExplorerProtocol,\r
                   NULL\r
                   );\r
   ASSERT_EFI_ERROR (Status);\r