diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:58:19 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:01:42 +0530 |
commit | ee79a6415f911801eb7804704ac130088281b2d8 (patch) | |
tree | 01f358bdb9f3ae79ff6056b8f67700bcc397ffcd /include | |
parent | 8ef342021a55e4237e593c7f6304d0caa7bf1232 (diff) | |
download | linux-3.10-ee79a6415f911801eb7804704ac130088281b2d8.tar.gz linux-3.10-ee79a6415f911801eb7804704ac130088281b2d8.tar.bz2 linux-3.10-ee79a6415f911801eb7804704ac130088281b2d8.zip |
headers_check fix: linux/neighbour.h
fix the following 'make headers_check' warning:
usr/include/linux/neighbour.h:8: 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')
-rw-r--r-- | include/linux/neighbour.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/neighbour.h b/include/linux/neighbour.h index bd3bbf668cd..8730d5dae1b 100644 --- a/include/linux/neighbour.h +++ b/include/linux/neighbour.h @@ -1,6 +1,7 @@ #ifndef __LINUX_NEIGHBOUR_H #define __LINUX_NEIGHBOUR_H +#include <linux/types.h> #include <linux/netlink.h> struct ndmsg |