mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-07 23:11:27 +00:00
[PATCH] uml: __deprecated makes build unnecessarily noisy
Remove the __deprecated from verify_area_skas and verify_area_tt. Since verify_area is itself marked __deprecated, and it is the only caller of these, then they don't need to be marked. Marking them only makes the build noisier. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
c184ca3681
commit
f2a0f8b930
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
||||||
((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
|
((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
|
||||||
((unsigned long) (addr) + (size) >= (unsigned long)(addr))))
|
((unsigned long) (addr) + (size) >= (unsigned long)(addr))))
|
||||||
|
|
||||||
static inline int __deprecated verify_area_skas(int type, const void * addr,
|
static inline int verify_area_skas(int type, const void * addr,
|
||||||
unsigned long size)
|
unsigned long size)
|
||||||
{
|
{
|
||||||
return(access_ok_skas(type, addr, size) ? 0 : -EFAULT);
|
return(access_ok_skas(type, addr, size) ? 0 : -EFAULT);
|
||||||
|
|
|
@ -33,7 +33,7 @@ extern unsigned long uml_physmem;
|
||||||
(((unsigned long) (addr) <= ((unsigned long) (addr) + (size))) && \
|
(((unsigned long) (addr) <= ((unsigned long) (addr) + (size))) && \
|
||||||
(under_task_size(addr, size) || is_stack(addr, size))))
|
(under_task_size(addr, size) || is_stack(addr, size))))
|
||||||
|
|
||||||
static inline int __deprecated verify_area_tt(int type, const void * addr,
|
static inline int verify_area_tt(int type, const void * addr,
|
||||||
unsigned long size)
|
unsigned long size)
|
||||||
{
|
{
|
||||||
return(access_ok_tt(type, addr, size) ? 0 : -EFAULT);
|
return(access_ok_tt(type, addr, size) ? 0 : -EFAULT);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue