HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30379
Change subject: arch/x86/wakeup.S: Use tabs instead of white spaces ......................................................................
arch/x86/wakeup.S: Use tabs instead of white spaces
Change-Id: I5ada2cd4c27eb34b453210fb86848f20569b8e83 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/x86/wakeup.S 1 file changed, 14 insertions(+), 14 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/79/30379/1
diff --git a/src/arch/x86/wakeup.S b/src/arch/x86/wakeup.S index aad72c2..ba502fe 100644 --- a/src/arch/x86/wakeup.S +++ b/src/arch/x86/wakeup.S @@ -29,29 +29,29 @@ .globl __wakeup __wakeup: #ifdef __x86_64__ - xor %rax,%rax - mov %ss, %ax - push %rax - mov %rsp, %rax - add $8, %rax - push %rax + xor %rax,%rax + mov %ss, %ax + push %rax + mov %rsp, %rax + add $8, %rax + push %rax pushfq - push $0x10 - lea 3(%rip), %rax - push %rax + push $0x10 + lea 3(%rip), %rax + push %rax iretq
.code32
/* disable paging */ - mov %cr0, %eax - btc $31, %eax - mov %eax, %cr0 + mov %cr0, %eax + btc $31, %eax + mov %eax, %cr0
/* disable long mode */ - mov $0xC0000080, %ecx + mov $0xC0000080, %ecx rdmsr - btc $8, %eax + btc $8, %eax wrmsr #endif /* First prepare the jmp to the resume vector */