diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 17:35:27 +0300 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:00:42 +0300 |
commit | 03cf1e0c3b4ee4ef51dc7eb197a4d098ad4873af (patch) | |
tree | 9cd4dc8f105e9174e627552dfc84445d4692297a /include/linux/nfsd | |
parent | 9e87b1e53f3c72c1196dc22cb359b5d6188a3729 (diff) | |
download | linux-03cf1e0c3b4ee4ef51dc7eb197a4d098ad4873af.tar.xz |
headers_check fix: nfsd/syscall.h
fix the following 'make headers_check' warnings:
usr/include/linux/nfsd/syscall.h:12: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/linux/nfsd/syscall.h:104: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include/linux/nfsd')
-rw-r--r-- | include/linux/nfsd/syscall.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/nfsd/syscall.h b/include/linux/nfsd/syscall.h index 4e439765b705..7a3b565b898f 100644 --- a/include/linux/nfsd/syscall.h +++ b/include/linux/nfsd/syscall.h @@ -9,9 +9,8 @@ #ifndef NFSD_SYSCALL_H #define NFSD_SYSCALL_H -#include <asm/types.h> -#ifdef __KERNEL__ # include <linux/types.h> +#ifdef __KERNEL__ # include <linux/in.h> #endif #include <linux/posix_types.h> |