diff options
author | Greg Ungerer <gerg@snapgear.com> | 2006-06-26 02:34:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 13:59:07 -0400 |
commit | d2f386d7c182c1420f797093d67bb09a7251f113 (patch) | |
tree | e815c24291da5eb402f7bc269a79c388ca55b074 /arch | |
parent | 2ae9cb6bd4c23616b229b135ea57a93a6a24e13a (diff) |
[PATCH] m68knommu: remove unused vars from generic 68328 start code
Clean out unused variable definitions from 68328 start up code.
Also use a more appropriate start address for the case of relocating
the kernel code to RAM (from ROM/flash).
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68knommu/platform/68328/head-ram.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/m68knommu/platform/68328/head-ram.S b/arch/m68knommu/platform/68328/head-ram.S index 6bdc9bce43f2..e8dc9241ff96 100644 --- a/arch/m68knommu/platform/68328/head-ram.S +++ b/arch/m68knommu/platform/68328/head-ram.S | |||
@@ -1,10 +1,7 @@ | |||
1 | #include <linux/config.h> | 1 | #include <linux/config.h> |
2 | 2 | ||
3 | .global __main | 3 | .global __main |
4 | .global __ram_start | ||
5 | .global __ram_end | ||
6 | .global __rom_start | 4 | .global __rom_start |
7 | .global __rom_end | ||
8 | 5 | ||
9 | .global _rambase | 6 | .global _rambase |
10 | .global _ramstart | 7 | .global _ramstart |
@@ -12,6 +9,7 @@ | |||
12 | .global splash_bits | 9 | .global splash_bits |
13 | .global _start | 10 | .global _start |
14 | .global _stext | 11 | .global _stext |
12 | .global _edata | ||
15 | 13 | ||
16 | #define DEBUG | 14 | #define DEBUG |
17 | #define ROM_OFFSET 0x10C00000 | 15 | #define ROM_OFFSET 0x10C00000 |
@@ -73,7 +71,7 @@ pclp1: | |||
73 | #ifdef CONFIG_RELOCATE | 71 | #ifdef CONFIG_RELOCATE |
74 | /* Copy me to RAM */ | 72 | /* Copy me to RAM */ |
75 | moveal #__rom_start, %a0 | 73 | moveal #__rom_start, %a0 |
76 | moveal #__ram_start, %a1 | 74 | moveal #_stext, %a1 |
77 | moveal #_edata, %a2 | 75 | moveal #_edata, %a2 |
78 | 76 | ||
79 | /* Copy %a0 to %a1 until %a1 == %a2 */ | 77 | /* Copy %a0 to %a1 until %a1 == %a2 */ |