diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-06-01 06:23:25 +0000 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-06-01 06:23:25 +0000 |
commit | d280cc989ad591607e812cd5c5dfde702b5f191a (patch) | |
tree | 44a5d5cee8702b49a8653bb4f0cbd82b1c99dbb6 | |
parent | 52bb25a620e1925bb53d41d0ed28571b3de98a31 (diff) |
headers_check fix: linux/net_dropmon.h
fix the following 'make headers_check' warnings:
usr/include/linux/net_dropmon.h:7: 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/net_dropmon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/net_dropmon.h b/include/linux/net_dropmon.h index 0217fb81a630..0e2e100c44a2 100644 --- a/include/linux/net_dropmon.h +++ b/include/linux/net_dropmon.h @@ -1,6 +1,7 @@ #ifndef __NET_DROPMON_H #define __NET_DROPMON_H +#include <linux/types.h> #include <linux/netlink.h> struct net_dm_drop_point { |