From: Helge Deller Date: Sun, 17 Oct 2021 13:23:53 +0000 (+0200) Subject: parisc: Use PRIV_USER in syscall.S X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fdc9e4e0ef897351f953c3a37e644670e3195926;p=linux.git parisc: Use PRIV_USER in syscall.S Signed-off-by: Helge Deller --- diff --git a/arch/parisc/kernel/syscall.S b/arch/parisc/kernel/syscall.S index c396853184d87..ec9675f584353 100644 --- a/arch/parisc/kernel/syscall.S +++ b/arch/parisc/kernel/syscall.S @@ -78,7 +78,7 @@ ENTRY(linux_gateway_page) lws_entry: gate lws_start, %r0 /* increase privilege */ - depi 3, 31, 2, %r31 /* Ensure we return into user mode. */ + depi PRIV_USER, 31, 2, %r31 /* Ensure we return into user mode. */ /* Fill from 0xb8 to 0xe0 */ .rept 10 @@ -89,7 +89,7 @@ lws_entry: mechanism to work. DO NOT MOVE THIS CODE EVER! */ set_thread_pointer: gate .+8, %r0 /* increase privilege */ - depi 3, 31, 2, %r31 /* Ensure we return into user mode. */ + depi PRIV_USER, 31, 2, %r31 /* Ensure we return into user mode. */ be 0(%sr7,%r31) /* return to user space */ mtctl %r26, %cr27 /* move arg0 to the control register */