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.17-3' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi

Pull EFI fix from Ard Biesheuvel:
"Avoid spurious warnings about unknown boot parameters"

* tag 'efi-urgent-for-v5.17-3' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi:
efi: fix return value of __setup handlers

+2 -2
+1 -1
drivers/firmware/efi/apple-properties.c
··· 24 24 static int __init dump_properties_enable(char *arg) 25 25 { 26 26 dump_properties = true; 27 - return 0; 27 + return 1; 28 28 } 29 29 30 30 __setup("dump_apple_properties", dump_properties_enable);
+1 -1
drivers/firmware/efi/efi.c
··· 212 212 memcpy(efivar_ssdt, str, strlen(str)); 213 213 else 214 214 pr_warn("efivar_ssdt: name too long: %s\n", str); 215 - return 0; 215 + return 1; 216 216 } 217 217 __setup("efivar_ssdt=", efivar_ssdt_setup); 218 218