diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-10-06 05:24:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-10-06 05:24:57 -0400 |
commit | 564c39701c8c52f2310a425223a04d175ed287c4 (patch) | |
tree | ee222f5f61f82555dd1422dcdf673dbcd6142bd4 | |
parent | 0ce6cda2c75d64175394341ef60e6e1d27dd9c10 (diff) | |
parent | c158c3bf59951bbb44bd7ccca9e6665dfd1617c5 (diff) |
Merge tag 'efi-next' of git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi into x86/efi
Pull EFI updates from Matt Fleming:
* Fix a recently introduced sparse warning caused by using 0 instead of
NULL - Leif Lindholm
* Remove a useless memset from the common EFI stub code - Roy Franz
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/platform/efi/efi.c | 2 | ||||
-rw-r--r-- | drivers/firmware/efi/efi-stub-helper.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c index fbc1d70188f8..1d3372ac9c66 100644 --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c | |||
@@ -71,7 +71,7 @@ static __initdata efi_config_table_type_t arch_tables[] = { | |||
71 | #ifdef CONFIG_X86_UV | 71 | #ifdef CONFIG_X86_UV |
72 | {UV_SYSTEM_TABLE_GUID, "UVsystab", &efi.uv_systab}, | 72 | {UV_SYSTEM_TABLE_GUID, "UVsystab", &efi.uv_systab}, |
73 | #endif | 73 | #endif |
74 | {NULL_GUID, NULL, 0}, | 74 | {NULL_GUID, NULL, NULL}, |
75 | }; | 75 | }; |
76 | 76 | ||
77 | /* | 77 | /* |
diff --git a/drivers/firmware/efi/efi-stub-helper.c b/drivers/firmware/efi/efi-stub-helper.c index cc0581daa9ed..b6bffbfd3be7 100644 --- a/drivers/firmware/efi/efi-stub-helper.c +++ b/drivers/firmware/efi/efi-stub-helper.c | |||
@@ -567,8 +567,6 @@ static efi_status_t efi_relocate_kernel(efi_system_table_t *sys_table_arg, | |||
567 | * have been allocated by UEFI, so we can safely use memcpy. | 567 | * have been allocated by UEFI, so we can safely use memcpy. |
568 | */ | 568 | */ |
569 | memcpy((void *)new_addr, (void *)cur_image_addr, image_size); | 569 | memcpy((void *)new_addr, (void *)cur_image_addr, image_size); |
570 | /* Zero any extra space we may have allocated for BSS. */ | ||
571 | memset((void *)(new_addr + image_size), alloc_size - image_size, 0); | ||
572 | 570 | ||
573 | /* Return the new address of the relocated image. */ | 571 | /* Return the new address of the relocated image. */ |
574 | *image_addr = new_addr; | 572 | *image_addr = new_addr; |