diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-05-28 14:34:20 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-29 08:40:01 -0700 |
commit | b2e1feaf0af6b8a826b86748a19ddc2013ab7dbd (patch) | |
tree | 73db46aa2824e4b6882f585f6e09a1a2f1ac9b2c /include/linux/cred.h | |
parent | 6d2661ede5f20f968422e790af3334908c3bc857 (diff) | |
download | op-kernel-dev-b2e1feaf0af6b8a826b86748a19ddc2013ab7dbd.zip op-kernel-dev-b2e1feaf0af6b8a826b86748a19ddc2013ab7dbd.tar.gz |
cred: #include init.h in cred.h
linux/cred.h can't be included as first header (alphabetical order)
because it uses __init which is enough to break compilation on some archs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Acked-by: James Morris <jmorris@namei.org>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/cred.h')
-rw-r--r-- | include/linux/cred.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/cred.h b/include/linux/cred.h index 3282ee43..4fa9996 100644 --- a/include/linux/cred.h +++ b/include/linux/cred.h @@ -13,6 +13,7 @@ #define _LINUX_CRED_H #include <linux/capability.h> +#include <linux/init.h> #include <linux/key.h> #include <asm/atomic.h> |