diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 15:42:01 +0100 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:05:22 +0100 |
commit | ba3a51e3b899c1bd34c18f84a1c6f7e5f99be850 (patch) | |
tree | b375bdfb047b33bc4212aa6ebca8dada54be3a41 | |
parent | headers_check fix: tc_act/tc_pedit.h (diff) | |
download | linux-ba3a51e3b899c1bd34c18f84a1c6f7e5f99be850.tar.xz linux-ba3a51e3b899c1bd34c18f84a1c6f7e5f99be850.zip |
headers_check fix: tc_ematch/tc_em_cmp.h
fix the following 'make headers_check' warning:
usr/include/linux/tc_ematch/tc_em_cmp.h:8: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r-- | include/linux/tc_ematch/tc_em_cmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tc_ematch/tc_em_cmp.h b/include/linux/tc_ematch/tc_em_cmp.h index c7f4d43618fd..38e7f7b25ec2 100644 --- a/include/linux/tc_ematch/tc_em_cmp.h +++ b/include/linux/tc_ematch/tc_em_cmp.h @@ -1,6 +1,7 @@ #ifndef __LINUX_TC_EM_CMP_H #define __LINUX_TC_EM_CMP_H +#include <linux/types.h> #include <linux/pkt_cls.h> struct tcf_em_cmp |