Skip to content

Commit

Permalink
From patchwork series 436925
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox Snowpatch committed Dec 16, 2024
1 parent 2dd0957 commit 9b6612f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -1960,8 +1960,8 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
* address of _start and the second entry is the TOC
* value we need to use.
*/
__get_user(entry, (unsigned long __user *)start);
__get_user(toc, (unsigned long __user *)start+1);
get_user(entry, (unsigned long __user *)start);
get_user(toc, (unsigned long __user *)start+1);

/* Check whether the e_entry function descriptor entries
* need to be relocated before we can use them.
Expand Down

0 comments on commit 9b6612f

Please sign in to comment.