diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2006-06-26 02:34:04 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 13:59:07 -0400 |
| commit | 2ae9cb6bd4c23616b229b135ea57a93a6a24e13a (patch) | |
| tree | bf68a68c16a39224c82790070b96d4d5ab5c5d70 | |
| parent | 5f2f444136abdb13dbd2094555aa65fc252aef6c (diff) | |
[PATCH] m68knommu: remove __ramvec from 68328/pilot start code
__ramvec has been removed from the linker script. The vector base
address is defined as a configurable option, use that. Remove its
use from the 68328/pilot startup code.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/m68knommu/platform/68328/head-pilot.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/m68knommu/platform/68328/head-pilot.S b/arch/m68knommu/platform/68328/head-pilot.S index c46775fe04be..46b3604f999c 100644 --- a/arch/m68knommu/platform/68328/head-pilot.S +++ b/arch/m68knommu/platform/68328/head-pilot.S | |||
| @@ -21,7 +21,6 @@ | |||
| 21 | .global _start | 21 | .global _start |
| 22 | 22 | ||
| 23 | .global _rambase | 23 | .global _rambase |
| 24 | .global __ramvec | ||
| 25 | .global _ramvec | 24 | .global _ramvec |
| 26 | .global _ramstart | 25 | .global _ramstart |
| 27 | .global _ramend | 26 | .global _ramend |
| @@ -121,7 +120,7 @@ L0: | |||
| 121 | DBG_PUTC('B') | 120 | DBG_PUTC('B') |
| 122 | 121 | ||
| 123 | /* Copy command line from beginning of RAM (+16) to end of bss */ | 122 | /* Copy command line from beginning of RAM (+16) to end of bss */ |
| 124 | movel #__ramvec, %d7 | 123 | movel #CONFIG_VECTORBASE, %d7 |
| 125 | addl #16, %d7 | 124 | addl #16, %d7 |
| 126 | moveal %d7, %a0 | 125 | moveal %d7, %a0 |
| 127 | moveal #_ebss, %a1 | 126 | moveal #_ebss, %a1 |
