Lines Matching refs:setup
66 typedef VOID(*handover_f)(VOID *image, EFI_SYSTEM_TABLE *table, struct SetupHeader *setup);
67 static inline VOID linux_efi_handover(EFI_HANDLE image, struct SetupHeader *setup) {
71 handover = (handover_f)((UINTN)setup->code32_start + 512 + setup->handover_offset);
72 handover(image, ST, setup);
75 typedef VOID(*handover_f)(VOID *image, EFI_SYSTEM_TABLE *table, struct SetupHeader *setup) __attribute__((regparm(0)));
76 static inline VOID linux_efi_handover(EFI_HANDLE image, struct SetupHeader *setup) {
79 handover = (handover_f)((UINTN)setup->code32_start + setup->handover_offset);
80 handover(image, ST, setup);