commit | 60e3fedc64532c66f5bcd7c5c3d95e51ab2783e7 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Fri Feb 10 08:23:24 2023 +0100 |
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Fri Feb 10 13:05:40 2023 +0100 |
tree | 03efcb500d7945f84fda64b914e527a4495a0e50 | |
parent | 4db17a4b12524d0ec2dc30913dbbf44f968ce8e0 [diff] |
efi_loader: add definition for efi_main() U-Boot provides multiple EFI applications. The entry point is called efi_main(). Provide a definition for this function. This avoids build warnings like lib/efi_loader/initrddump.c:468:21: warning: no previous prototype for ‘efi_main’ [-Wmissing-prototypes] 468 | efi_status_t EFIAPI efi_main(efi_handle_t image_handle, | ^~~~~~~~ Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>