Commit 0f17d074 authored by Stephen Rothwell's avatar Stephen Rothwell

powerpc: make 64 bit binaries work

Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
parent 70620186
...@@ -620,7 +620,7 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp) ...@@ -620,7 +620,7 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
regs->nip = start; regs->nip = start;
regs->msr = MSR_USER; regs->msr = MSR_USER;
#else #else
if (test_thread_flag(TIF_32BIT)) { {
unsigned long entry, toc, load_addr = regs->gpr[2]; unsigned long entry, toc, load_addr = regs->gpr[2];
/* start is a relocated pointer to the function descriptor for /* start is a relocated pointer to the function descriptor for
...@@ -641,10 +641,6 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp) ...@@ -641,10 +641,6 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
regs->nip = entry; regs->nip = entry;
regs->gpr[2] = toc; regs->gpr[2] = toc;
regs->msr = MSR_USER64; regs->msr = MSR_USER64;
} else {
regs->nip = start;
regs->gpr[2] = 0;
regs->msr = MSR_USER32;
} }
#endif #endif
......
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