Commit 94a5d496 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] use _etext in 68EZ328 ucsimm target start code

This patch switches to using the _etext linker symbol instead of
__data_rom_start for the ucsimm 68EZ328 platform. I intend to
deprecate the __data_rom_start linker symbol in the future.
parent 5d4d35b9
......@@ -54,7 +54,7 @@ _stext: movew #0x2700,%sr
bne 1b
/* Copy data segment from ROM to RAM */
moveal #__data_rom_start, %a0
moveal #_etext, %a0
moveal #_sdata, %a1
moveal #_edata, %a2
......
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