x86: Fix various code format issues in start16.S

Various minor code format issues are fixed in start16.S:
- U-boot -> U-Boot
- 32bit -> 32-bit
- Use TAB instead of SPACE to indent
- Move the indention location of the GDT comment block

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Bin Meng 2015-01-20 11:25:44 +08:00 committed by Simon Glass
parent 3b621ccabd
commit fea1c47f54

View file

@ -1,5 +1,5 @@
/*
* U-boot - x86 Startup Code
* U-Boot - x86 Startup Code
*
* (C) Copyright 2008-2011
* Graeme Russ, <graeme.russ@gmail.com>
@ -49,7 +49,7 @@ o32 cs lgdt gdt_ptr
jmp ff
ff:
/* Finally restore BIST and jump to the 32bit initialization code */
/* Finally restore BIST and jump to the 32-bit initialization code */
movw $code32start, %ax
movw %ax, %bp
movl %ecx, %eax
@ -64,7 +64,7 @@ idt_ptr:
.word 0 /* limit */
.long 0 /* base */
/*
/*
* The following Global Descriptor Table is just enough to get us into
* 'Flat Protected Mode' - It will be discarded as soon as the final
* GDT is setup in a safe location in RAM
@ -73,8 +73,8 @@ gdt_ptr:
.word 0x1f /* limit (31 bytes = 4 GDT entries - 1) */
.long BOOT_SEG + gdt /* base */
/* Some CPUs are picky about GDT alignment... */
.align 16
/* Some CPUs are picky about GDT alignment... */
.align 16
gdt:
/*
* The GDT table ...