mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
014a5c107d
Patch series "hexagon: Fix up instances of -Wmissing-prototypes".
This series fixes all the instances of -Wmissing-prototypes in
arch/hexagon, as it is about to be enabled globally in a default build.
This patch (of 19):
Clang warns:
arch/hexagon/mm/uaccess.c:39:15: warning: no previous prototype for function 'clear_user_hexagon' [-Wmissing-prototypes]
39 | unsigned long clear_user_hexagon(void __user *dest, unsigned long count)
| ^
arch/hexagon/mm/uaccess.c:39:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
39 | unsigned long clear_user_hexagon(void __user *dest, unsigned long count)
| ^
| static
1 warning generated.
This function appears to have been unused since it was introduced in
commit 7567746e1c
("Hexagon: Add user access functions"), so remove it.
Link: https://lkml.kernel.org/r/20231130-hexagon-missing-prototypes-v1-0-5c34714afe9e@kernel.org
Link: https://lkml.kernel.org/r/20231130-hexagon-missing-prototypes-v1-1-5c34714afe9e@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Brian Cain <bcain@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
38 lines
999 B
C
38 lines
999 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
/*
|
|
* Support for user memory access from kernel. This will
|
|
* probably be inlined for performance at some point, but
|
|
* for ease of debug, and to a lesser degree for code size,
|
|
* we implement here as subroutines.
|
|
*/
|
|
#include <linux/types.h>
|
|
#include <linux/uaccess.h>
|
|
#include <linux/pgtable.h>
|
|
|
|
/*
|
|
* For clear_user(), exploit previously defined copy_to_user function
|
|
* and the fact that we've got a handy zero page defined in kernel/head.S
|
|
*
|
|
* dczero here would be even faster.
|
|
*/
|
|
__kernel_size_t __clear_user_hexagon(void __user *dest, unsigned long count)
|
|
{
|
|
long uncleared;
|
|
|
|
while (count > 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 = raw_copy_to_user(dest, &empty_zero_page, count);
|
|
|
|
return count;
|
|
}
|