Commit db14655a authored by Ard Biesheuvel's avatar Ard Biesheuvel
Browse files

efi: libstub: Give efi_main() asmlinkage qualification



To stop the bots from sending sparse warnings to me and the list about
efi_main() not having a prototype, decorate it with asmlinkage so that
it is clear that it is called from assembly, and therefore needs to
remain external, even if it is never declared in a header file.

Signed-off-by: default avatarArd Biesheuvel <ardb@kernel.org>
parent 8a254d90
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -765,7 +765,7 @@ static efi_status_t exit_boot(struct boot_params *boot_params, void *handle)
 * relocated by efi_relocate_kernel.
 * On failure, we exit to the firmware via efi_exit instead of returning.
 */
unsigned long efi_main(efi_handle_t handle,
asmlinkage unsigned long efi_main(efi_handle_t handle,
				  efi_system_table_t *sys_table_arg,
				  struct boot_params *boot_params)
{