diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:44:19 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:58:12 +0530 |
commit | 217a2291570b1e4c28cb6e4cd099707e456a09b8 (patch) | |
tree | 6e3a798328b7ca8bb5f137c8e1158f1b096c6eac /include/linux | |
parent | 2df005b75ab910f789f099f81bb70b3aa37203a7 (diff) | |
download | op-kernel-dev-217a2291570b1e4c28cb6e4cd099707e456a09b8.zip op-kernel-dev-217a2291570b1e4c28cb6e4cd099707e456a09b8.tar.gz |
headers_check fix: linux/ip6_tunnel.h
fix the following 'make headers_check' warning:
include/linux/ip6_tunnel.h:21: 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')
-rw-r--r-- | include/linux/ip6_tunnel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ip6_tunnel.h b/include/linux/ip6_tunnel.h index 1e7cc4a..acb9ad6 100644 --- a/include/linux/ip6_tunnel.h +++ b/include/linux/ip6_tunnel.h @@ -1,6 +1,8 @@ #ifndef _IP6_TUNNEL_H #define _IP6_TUNNEL_H +#include <linux/types.h> + #define IPV6_TLV_TNL_ENCAP_LIMIT 4 #define IPV6_DEFAULT_TNL_ENCAP_LIMIT 4 |