Skip to content

Commit

Permalink
[PATCH] m68knommu: remove __ramvec from 68328/pilot start code
Browse files Browse the repository at this point in the history
__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>
  • Loading branch information
Greg Ungerer authored and Linus Torvalds committed Jun 26, 2006
1 parent 5f2f444 commit 2ae9cb6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/m68knommu/platform/68328/head-pilot.S
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
.global _start

.global _rambase
.global __ramvec
.global _ramvec
.global _ramstart
.global _ramend
Expand Down Expand Up @@ -121,7 +120,7 @@ L0:
DBG_PUTC('B')

/* Copy command line from beginning of RAM (+16) to end of bss */
movel #__ramvec, %d7
movel #CONFIG_VECTORBASE, %d7
addl #16, %d7
moveal %d7, %a0
moveal #_ebss, %a1
Expand Down

0 comments on commit 2ae9cb6

Please sign in to comment.