Commit afe0bc63 authored by Ian Campbell's avatar Ian Campbell Committed by Ingo Molnar

x86: unify whitespace and comments in arch/x86/boot/compressed/vmlinux_??.lds

size reports no change in arch/x86/boot/compressed/vmlinux.
Signed-off-by: default avatarIan Campbell <ijc@hellion.org.uk>
Cc: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent c6c2d7a0
...@@ -3,10 +3,10 @@ OUTPUT_ARCH(i386) ...@@ -3,10 +3,10 @@ OUTPUT_ARCH(i386)
ENTRY(startup_32) ENTRY(startup_32)
SECTIONS SECTIONS
{ {
/* Be careful parts of head.S assume startup_32 is at /* Be careful parts of head_32.S assume startup_32 is at
* address 0. * address 0.
*/ */
. = 0 ; . = 0;
.text.head : { .text.head : {
_head = . ; _head = . ;
*(.text.head) *(.text.head)
......
...@@ -3,8 +3,8 @@ OUTPUT_ARCH(i386:x86-64) ...@@ -3,8 +3,8 @@ OUTPUT_ARCH(i386:x86-64)
ENTRY(startup_64) ENTRY(startup_64)
SECTIONS SECTIONS
{ {
/* Be careful parts of head.S assume startup_32 is at /* Be careful parts of head_64.S assume startup_64 is at
* address 0. * address 0.
*/ */
. = 0; . = 0;
.text : { .text : {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment