Skip to content

Commit 9b6612f

Browse files
author
Fox Snowpatch
committed
1 parent 2dd0957 commit 9b6612f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/powerpc/kernel/process.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1960,8 +1960,8 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
19601960
* address of _start and the second entry is the TOC
19611961
* value we need to use.
19621962
*/
1963-
__get_user(entry, (unsigned long __user *)start);
1964-
__get_user(toc, (unsigned long __user *)start+1);
1963+
get_user(entry, (unsigned long __user *)start);
1964+
get_user(toc, (unsigned long __user *)start+1);
19651965

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

0 commit comments

Comments
 (0)