summaryrefslogtreecommitdiff
path: root/arch/hexagon/mm/uaccess.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-06-20 10:48:44 +0200
committerIngo Molnar <mingo@kernel.org>2017-06-20 10:48:44 +0200
commit2eb0fc9bfe7485fec16030b85ff586e7aaea2b6f (patch)
treeb804e48f8aba794030f3610199b0f20140e6c6a8 /arch/hexagon/mm/uaccess.c
parentd0fabd1cb8b70073a0f44f1cf8b663b5e7241c74 (diff)
parent41f1830f5a7af77cf5c86359aba3cbd706687e52 (diff)
Merge tag 'v4.12-rc6' into perf/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/hexagon/mm/uaccess.c')
-rw-r--r--arch/hexagon/mm/uaccess.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/hexagon/mm/uaccess.c b/arch/hexagon/mm/uaccess.c
index ec90afdb3ad0..c599eb126c9e 100644
--- a/arch/hexagon/mm/uaccess.c
+++ b/arch/hexagon/mm/uaccess.c
@@ -37,15 +37,14 @@ __kernel_size_t __clear_user_hexagon(void __user *dest, unsigned long count)
long uncleared;
while (count > PAGE_SIZE) {
- uncleared = __copy_to_user_hexagon(dest, &empty_zero_page,
- PAGE_SIZE);
+ uncleared = raw_copy_to_user(dest, &empty_zero_page, PAGE_SIZE);
if (uncleared)
return count - (PAGE_SIZE - uncleared);
count -= PAGE_SIZE;
dest += PAGE_SIZE;
}
if (count)
- count = __copy_to_user_hexagon(dest, &empty_zero_page, count);
+ count = raw_copy_to_user(dest, &empty_zero_page, count);
return count;
}