Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=70f9ca... Commit: 70f9cac5e077df8fc5a613d84e2e13005a6ff841 Parent: 29e92f483603d97dd1d2bafcb32101287dfac4ad Author: Geert Uytterhoeven <geert@linux-m68k.org> AuthorDate: Sun May 18 20:47:07 2008 +0200 Committer: Linus Torvalds <torvalds@linux-foundation.org> CommitDate: Sun May 18 13:28:48 2008 -0700 m68k: Convert access_ok() to an inline function Convert access_ok() from a macro to an inline function, so the compiler no longer complains about unused variables: fs/read_write.c: In function 'rw_copy_check_uvector': fs/read_write.c:556: warning: unused variable 'buf' Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> --- include/asm-m68k/uaccess.h | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/include/asm-m68k/uaccess.h b/include/asm-m68k/uaccess.h index 5c1264c..7107f3f 100644 --- a/include/asm-m68k/uaccess.h +++ b/include/asm-m68k/uaccess.h @@ -14,7 +14,11 @@ #define VERIFY_WRITE 1 /* We let the MMU do all checking */ -#define access_ok(type,addr,size) 1 +static inline int access_ok(int type, const void __user *addr, + unsigned long size) +{ + return 1; +} /* * The exception table consists of pairs of addresses: the first is the -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
