X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=EmbeddedPkg%2FInclude%2FProtocol%2FAndroidBootImg.h;h=37a895119a5e6a5cfb9a37fc3e4093c68257758a;hp=1c458d0255a7a12a96cf8746e932daf8f7843d69;hb=HEAD;hpb=fa74dd2217aebe6930890e55d58d35e639b18c2e;ds=sidebyside diff --git a/EmbeddedPkg/Include/Protocol/AndroidBootImg.h b/EmbeddedPkg/Include/Protocol/AndroidBootImg.h index 1c458d0255..128a5d8f0d 100644 --- a/EmbeddedPkg/Include/Protocol/AndroidBootImg.h +++ b/EmbeddedPkg/Include/Protocol/AndroidBootImg.h @@ -2,13 +2,7 @@ Copyright (c) 2017, Linaro. All rights reserved.
- This program and the accompanying materials - are licensed and made available under the terms and conditions of the BSD License - which accompanies this distribution. The full text of the license may be found at - http://opensource.org/licenses/bsd-license.php - - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + SPDX-License-Identifier: BSD-2-Clause-Patent **/ @@ -18,30 +12,30 @@ // // Protocol interface structure // -typedef struct _ANDROID_BOOTIMG_PROTOCOL ANDROID_BOOTIMG_PROTOCOL; +typedef struct _ANDROID_BOOTIMG_PROTOCOL ANDROID_BOOTIMG_PROTOCOL; // // Function Prototypes // typedef EFI_STATUS -(EFIAPI *ANDROID_BOOTIMG_APPEND_KERNEL_ARGS) ( +(EFIAPI *ANDROID_BOOTIMG_APPEND_KERNEL_ARGS)( IN CHAR16 *Args, IN UINTN Size ); typedef EFI_STATUS -(EFIAPI *ANDROID_BOOTIMG_UPDATE_DTB) ( - IN EFI_PHYSICAL_ADDRESS OrigDtbBase; - OUT EFI_PHYSICAL_ADDRESS *NewDtbBase; +(EFIAPI *ANDROID_BOOTIMG_UPDATE_DTB)( + IN EFI_PHYSICAL_ADDRESS OrigDtbBase, + OUT EFI_PHYSICAL_ADDRESS *NewDtbBase ); struct _ANDROID_BOOTIMG_PROTOCOL { - ANDROID_BOOTIMG_APPEND_KERNEL_ARGS AppendArgs; - ANDROID_BOOTIMG_UPDATE_DTB UpdateDtb; + ANDROID_BOOTIMG_APPEND_KERNEL_ARGS AppendArgs; + ANDROID_BOOTIMG_UPDATE_DTB UpdateDtb; }; -extern EFI_GUID gAndroidBootImgProtocolGuid; +extern EFI_GUID gAndroidBootImgProtocolGuid; #endif /* __ANDROID_BOOTIMG_PROTOCOL_H__ */