mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
string: do not export memweight() to userspace
Fix the following warning: usr/include/linux/string.h:8: userspace cannot reference function or variable defined in the kernel Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> Acked-by: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d46f3d86fd
commit
c3a5ce0416
1 changed files with 1 additions and 1 deletions
|
@ -144,8 +144,8 @@ static inline bool strstarts(const char *str, const char *prefix)
|
||||||
{
|
{
|
||||||
return strncmp(str, prefix, strlen(prefix)) == 0;
|
return strncmp(str, prefix, strlen(prefix)) == 0;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
extern size_t memweight(const void *ptr, size_t bytes);
|
extern size_t memweight(const void *ptr, size_t bytes);
|
||||||
|
|
||||||
|
#endif /* __KERNEL__ */
|
||||||
#endif /* _LINUX_STRING_H_ */
|
#endif /* _LINUX_STRING_H_ */
|
||||||
|
|
Loading…
Reference in a new issue