diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 20:10:05 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:33:38 +0530 |
commit | 2d594c0c8aa46beb21be1c5c2b7141f89d206313 (patch) | |
tree | 3fea3e8011e31f4af912c1bb19262241726a2685 /include/linux/tc_act | |
parent | 550e978aa52e2ac3c493e8a0b36b368ade6dd2b4 (diff) |
headers_check fix: tc_act/tc_gact.h
fix the following 'make headers_check' warning:
usr/include/linux/tc_act/tc_gact.h:19: 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/tc_act')
-rw-r--r-- | include/linux/tc_act/tc_gact.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tc_act/tc_gact.h b/include/linux/tc_act/tc_gact.h index 23a03eb630d..e895c0a3962 100644 --- a/include/linux/tc_act/tc_gact.h +++ b/include/linux/tc_act/tc_gact.h @@ -1,6 +1,7 @@ #ifndef __LINUX_TC_GACT_H #define __LINUX_TC_GACT_H +#include <linux/types.h> #include <linux/pkt_cls.h> #define TCA_ACT_GACT 5 |