Move C labels to start-of-line
[coreboot.git] / src / cpu / x86 / lapic / secondary.S
index 5185021c3ca75cc441a879226daa5dfcf7c74fcc..dc00b082e9f571b3af3831f58e273bf138593c17 100644 (file)
@@ -1,9 +1,8 @@
-#include <arch/asm.h>
-#include <arch/intel.h>
 #include <cpu/x86/mtrr.h>
 #include <cpu/x86/lapic_def.h>
+
        .text
-       .globl _secondary_start
+       .globl _secondary_start, _secondary_start_end
        .balign 4096
 _secondary_start:
        .code16
@@ -26,8 +25,8 @@ _secondary_start:
        orl     $0x60000001, %eax /* CD, NW, PE = 1 */
        movl    %eax, %cr0
 
-       ljmpl $0x10, $1f
-1:     
+       ljmpl   $0x10, $1f
+1:
        .code32
        movw    $0x18, %ax
        movw    %ax, %ds
@@ -49,8 +48,8 @@ _secondary_start:
        jmp     1b
 
 gdtaddr:
-       .word   gdt_limit       /* the table limit */
-       .long   gdt             /* we know the offset */
-
+       .word   gdt_limit       /* the table limit */
+       .long   gdt             /* we know the offset */
 
+_secondary_start_end:
 .code32