diff options
Diffstat (limited to 'arch/x86/boot/compressed/head_64.S')
| -rw-r--r-- | arch/x86/boot/compressed/head_64.S | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/boot/compressed/head_64.S b/arch/x86/boot/compressed/head_64.S index 2c4b171eec3..f5d1aaa0dec 100644 --- a/arch/x86/boot/compressed/head_64.S +++ b/arch/x86/boot/compressed/head_64.S @@ -201,12 +201,12 @@ ENTRY(startup_64)  	 */  #ifdef CONFIG_EFI_STUB  	/* -	 * The entry point for the PE/COFF executable is 0x210, so only -	 * legacy boot loaders will execute this jmp. +	 * The entry point for the PE/COFF executable is efi_pe_entry, so +	 * only legacy boot loaders will execute this jmp.  	 */  	jmp	preferred_addr -	.org 0x210 +ENTRY(efi_pe_entry)  	mov	%rcx, %rdi  	mov	%rdx, %rsi  	pushq	%rdi @@ -218,7 +218,7 @@ ENTRY(startup_64)  	popq	%rsi  	popq	%rdi -	.org 0x230,0x90 +ENTRY(efi_stub_entry)  	call	efi_main  	movq	%rax,%rsi  	cmpq	$0,%rax  |