Commit f1fd07b6 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] use _etext in 68VZ328 ucdimm target start code

This patch switches to using the _etext linker symbol instead of
__data_rom_start for the ucdimm 68VZ328 platform. I intend to
deprecate the __data_rom_start linker symbol in the future.
parent 64e6503c
......@@ -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