diff options
author | Kumar Gala <galak@freescale.com> | 2005-10-12 00:54:00 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-17 07:43:12 -0400 |
commit | ea703ce20699dd85ad7954e34b71a2c7c47b6132 (patch) | |
tree | e9d200bb4caa5a211025c1306fac0c8bd5e8e979 /arch/powerpc/kernel/head_fsl_booke.S | |
parent | 5f2967553394d01f4bafd03398777a42e8344d28 (diff) |
[PATCH] powerpc: replace use of _GLOBAL with .globl
The _GLOBAL() macro is for text symbols only. Changed to using
.globl for .data symbols.
Signed-off-by: Kumar K. Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/head_fsl_booke.S')
-rw-r--r-- | arch/powerpc/kernel/head_fsl_booke.S | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 53949811efd..5063c603fad 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S | |||
@@ -1028,10 +1028,14 @@ _GLOBAL(set_context) | |||
1028 | * goes at the beginning of the data segment, which is page-aligned. | 1028 | * goes at the beginning of the data segment, which is page-aligned. |
1029 | */ | 1029 | */ |
1030 | .data | 1030 | .data |
1031 | _GLOBAL(sdata) | 1031 | .align 12 |
1032 | _GLOBAL(empty_zero_page) | 1032 | .globl sdata |
1033 | sdata: | ||
1034 | .globl empty_zero_page | ||
1035 | empty_zero_page: | ||
1033 | .space 4096 | 1036 | .space 4096 |
1034 | _GLOBAL(swapper_pg_dir) | 1037 | .globl swapper_pg_dir |
1038 | swapper_pg_dir: | ||
1035 | .space 4096 | 1039 | .space 4096 |
1036 | 1040 | ||
1037 | /* Reserved 4k for the critical exception stack & 4k for the machine | 1041 | /* Reserved 4k for the critical exception stack & 4k for the machine |
@@ -1040,13 +1044,15 @@ _GLOBAL(swapper_pg_dir) | |||
1040 | .align 12 | 1044 | .align 12 |
1041 | exception_stack_bottom: | 1045 | exception_stack_bottom: |
1042 | .space BOOKE_EXCEPTION_STACK_SIZE * NR_CPUS | 1046 | .space BOOKE_EXCEPTION_STACK_SIZE * NR_CPUS |
1043 | _GLOBAL(exception_stack_top) | 1047 | .globl exception_stack_top |
1048 | exception_stack_top: | ||
1044 | 1049 | ||
1045 | /* | 1050 | /* |
1046 | * This space gets a copy of optional info passed to us by the bootstrap | 1051 | * This space gets a copy of optional info passed to us by the bootstrap |
1047 | * which is used to pass parameters into the kernel like root=/dev/sda1, etc. | 1052 | * which is used to pass parameters into the kernel like root=/dev/sda1, etc. |
1048 | */ | 1053 | */ |
1049 | _GLOBAL(cmd_line) | 1054 | .globl cmd_line |
1055 | cmd_line: | ||
1050 | .space 512 | 1056 | .space 512 |
1051 | 1057 | ||
1052 | /* | 1058 | /* |
@@ -1055,4 +1061,3 @@ _GLOBAL(cmd_line) | |||
1055 | */ | 1061 | */ |
1056 | abatron_pteptrs: | 1062 | abatron_pteptrs: |
1057 | .space 8 | 1063 | .space 8 |
1058 | |||