aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mn10300
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2011-06-21 10:29:51 +0100
committerLinus Torvalds <torvalds@linux-foundation.org>2011-06-21 18:31:44 -0700
commit35052cffe0081904f3362c05818db900dd9dc7de (patch)
tree4519a60303f4990aa19f52b94c1e5119da0869fa /arch/mn10300
parent2992c4bd5742b31a0ee00a76eee9c1c284507418 (diff)
downloadkernel_samsung_smdk4412-35052cffe0081904f3362c05818db900dd9dc7de.zip
kernel_samsung_smdk4412-35052cffe0081904f3362c05818db900dd9dc7de.tar.gz
kernel_samsung_smdk4412-35052cffe0081904f3362c05818db900dd9dc7de.tar.bz2
MN10300: asm/uaccess.h needs to #include linux/kernel.h for might_sleep()
MN10300's asm/uaccess.h needs to #include linux/kernel.h to get might_sleep() otherwise it fails to build on MN10300 allyesconfig. This fails in a few places with messages like the following: In file included from security/keys/trusted.c:14: include/linux/uaccess.h: In function '__copy_from_user_nocache': include/linux/uaccess.h:52: error: implicit declaration of function 'might_sleep' Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300')
-rw-r--r--arch/mn10300/include/asm/uaccess.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mn10300/include/asm/uaccess.h b/arch/mn10300/include/asm/uaccess.h
index 3d6e60d..780560b 100644
--- a/arch/mn10300/include/asm/uaccess.h
+++ b/arch/mn10300/include/asm/uaccess.h
@@ -15,6 +15,7 @@
* User space memory access functions
*/
#include <linux/thread_info.h>
+#include <linux/kernel.h>
#include <asm/page.h>
#include <asm/errno.h>