This adds the SIMD stash/unstash operations that we need to allow UEFI runtime services calls to call back into the kernel. In the ARM case, these are actually NOPs, since UEFI on ARM is not allowed to use the FP/NEON register file. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx> --- arch/arm/include/asm/efi.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/include/asm/efi.h b/arch/arm/include/asm/efi.h index 766bf9b78160..c71ea8c21d0d 100644 --- a/arch/arm/include/asm/efi.h +++ b/arch/arm/include/asm/efi.h @@ -83,4 +83,15 @@ static inline void efifb_setup_from_dmi(struct screen_info *si, const char *opt) #define MIN_ZIMAGE_OFFSET MAX_UNCOMP_KERNEL_SIZE #define MAX_FDT_OFFSET ZIMAGE_OFFSET_LIMIT +struct efi_simd_reg_stash { +}; + +static inline void arch_efi_stash_simd_regs(struct efi_simd_reg_stash *stash) +{ +} + +static inline void arch_efi_unstash_simd_regs(struct efi_simd_reg_stash *stash) +{ +} + #endif /* _ASM_ARM_EFI_H */ -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html