powerpc: Revert switch to TEXT_TEXT in linker script

Commit edada399 broke the build on 64-bit powerpc because it moved the
__ftr_alt_* sections of a file away from the .text section, causing
link failures due to relative conditional branch targets being too far
away from the branch instructions. This happens on pretty much all
64-bit powerpc configs.

This change reverts commit edada399 while preserving the update from
the *.refok sections to .ref.text that has happened since.

Signed-off-by: Tim Abbott <tabbott@mit.edu>
Requested-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Tim Abbott and committed by Linus Torvalds 13beadd9 27b18332

+2 -2
+2 -2
arch/powerpc/kernel/vmlinux.lds.S
··· 54 54 ALIGN_FUNCTION(); 55 55 HEAD_TEXT 56 56 _text = .; 57 - TEXT_TEXT 58 - *(.fixup __ftr_alt_*) 57 + /* careful! __ftr_alt_* sections need to be close to .text */ 58 + *(.text .fixup __ftr_alt_* .ref.text) 59 59 SCHED_TEXT 60 60 LOCK_TEXT 61 61 KPROBES_TEXT