Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'efi-urgent-for-v5.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi

Pull EFI fixes from Ard Biesheuvel:

- remove pointless include of asm/efi.h, which does not exist on ia64

- fix DXE service marshalling prototype for mixed mode

* tag 'efi-urgent-for-v5.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi:
efi/x86: libstub: Fix typo in __efi64_argmap* name
efi: sysfb_efi: remove unnecessary <asm/efi.h> include

+1 -3
+1 -1
arch/x86/include/asm/efi.h
··· 323 323 #define __efi64_argmap_get_memory_space_descriptor(phys, desc) \ 324 324 (__efi64_split(phys), (desc)) 325 325 326 - #define __efi64_argmap_set_memory_space_descriptor(phys, size, flags) \ 326 + #define __efi64_argmap_set_memory_space_attributes(phys, size, flags) \ 327 327 (__efi64_split(phys), __efi64_split(size), __efi64_split(flags)) 328 328 329 329 /*
-2
drivers/firmware/efi/sysfb_efi.c
··· 26 26 #include <linux/sysfb.h> 27 27 #include <video/vga.h> 28 28 29 - #include <asm/efi.h> 30 - 31 29 enum { 32 30 OVERRIDE_NONE = 0x0, 33 31 OVERRIDE_BASE = 0x1,