diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:07:05 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:04:50 +0530 |
commit | b8adfd3c753b47c47f626e032da7999530c316f0 (patch) | |
tree | 270a3730da0e33290cc844fcbfb475503a9ed0c3 /include | |
parent | ed307444d8f276d7052400c47d9f4c5393997c42 (diff) | |
download | op-kernel-dev-b8adfd3c753b47c47f626e032da7999530c316f0.zip op-kernel-dev-b8adfd3c753b47c47f626e032da7999530c316f0.tar.gz |
headers_check fix: linux/pkt_sched.h
fix the following 'make headers_check' warning:
usr/include/linux/pkt_sched.h:32: 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/pkt_sched.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h index e3f133a..b2648e8 100644 --- a/include/linux/pkt_sched.h +++ b/include/linux/pkt_sched.h @@ -1,6 +1,8 @@ #ifndef __LINUX_PKT_SCHED_H #define __LINUX_PKT_SCHED_H +#include <linux/types.h> + /* Logical priority bands not depending on specific packet scheduler. Every scheduler will map them to real traffic classes, if it has no more precise mechanism to classify packets. |