Skip to content

Commit 0a89b5e

Browse files
committed
Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull EFI fix from Thomas Gleixner: "Downgrade the missing ESRT header printk to warning level and remove a useless error printk which just generates noise for no value" * 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: efi/esrt: Cleanup bad memory map log messages
2 parents 4a6808f + 79a21d5 commit 0a89b5e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

drivers/firmware/efi/efi.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ int __init efi_mem_desc_lookup(u64 phys_addr, efi_memory_desc_t *out_md)
389389
return 0;
390390
}
391391
}
392-
pr_err_once("requested map not found.\n");
393392
return -ENOENT;
394393
}
395394

drivers/firmware/efi/esrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ void __init efi_esrt_init(void)
254254

255255
rc = efi_mem_desc_lookup(efi.esrt, &md);
256256
if (rc < 0) {
257-
pr_err("ESRT header is not in the memory map.\n");
257+
pr_warn("ESRT header is not in the memory map.\n");
258258
return;
259259
}
260260

0 commit comments

Comments
 (0)