diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2021-03-08 00:19:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-08 09:20:53 +0100 |
commit | 1f81bc6879908ea431d16c753b39e3ba13f2f105 (patch) | |
tree | 94a1ced275f4f576e56801021c5666f442e75aad /Kernel/Arch/i386 | |
parent | 6749ba3477255054b901fe8ac3f094b38a7622b6 (diff) | |
download | serenity-1f81bc6879908ea431d16c753b39e3ba13f2f105.zip |
Everywhere: Remove unnecessary whitespace at the end of some lines.
Diffstat (limited to 'Kernel/Arch/i386')
-rw-r--r-- | Kernel/Arch/i386/Boot/boot.S | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Kernel/Arch/i386/Boot/boot.S b/Kernel/Arch/i386/Boot/boot.S index f9630206e0..31d9b9e5d7 100644 --- a/Kernel/Arch/i386/Boot/boot.S +++ b/Kernel/Arch/i386/Boot/boot.S @@ -61,7 +61,7 @@ boot_pd3_pt1023: .global start .type start, @function -.extern init +.extern init .type init, @function .extern multiboot_info_ptr @@ -316,11 +316,11 @@ apic_ap_start32: orl $0x800, %eax wrmsr 1: - + /* load the bsp's cr3 value */ movl (ap_cpu_init_cr3 - apic_ap_start)(%ebp), %eax movl %eax, %cr3 - + /* enable PAE + PSE */ movl %cr4, %eax orl $0x60, %eax @@ -340,9 +340,9 @@ apic_ap_start32_2: /* flush the TLB */ movl %cr3, %eax movl %eax, %cr3 - + movl $0xc0008000, %ebp - + /* now load the final gdt and idt from the identity mapped area */ movl (ap_cpu_gdtr - apic_ap_start)(%ebp), %eax lgdt (%eax) @@ -354,20 +354,20 @@ apic_ap_start32_2: movl %eax, %cr0 movl (ap_cpu_init_cr4 - apic_ap_start)(%ebp), %eax movl %eax, %cr4 - + /* push the Processor pointer this CPU is going to use */ movl (ap_cpu_init_processor_info_array - apic_ap_start)(%ebp), %eax addl $0xc0000000, %eax movl 0(%eax, %esi, 4), %eax push %eax - + /* push the cpu id, 0 representing the bsp and call into c++ */ incl %esi push %esi - + xor %ebp, %ebp cld - + /* We are in identity mapped P0x8000 and the BSP will unload this code once all APs are initialized, so call init_ap but return to our infinite loop */ |