diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:22:51 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:09:13 +0530 |
commit | 8b1e3a2f7f84484a8c208671adac39eb148c7d61 (patch) | |
tree | d0afdecbd86e44e3e4775fcee270f272c113c03e /include | |
parent | 448314fc968252b0b95f74bbe63fdcaf41e6413d (diff) | |
download | linux-8b1e3a2f7f84484a8c208671adac39eb148c7d61.tar.gz linux-8b1e3a2f7f84484a8c208671adac39eb148c7d61.tar.bz2 linux-8b1e3a2f7f84484a8c208671adac39eb148c7d61.zip |
headers_check fix: linux/video_decoder.h
fix the following 'make headers_check' warning:
usr/include/linux/video_decoder.h:7: 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/video_decoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/video_decoder.h b/include/linux/video_decoder.h index 121e26da2c18..e26c0c86a6ea 100644 --- a/include/linux/video_decoder.h +++ b/include/linux/video_decoder.h @@ -1,6 +1,8 @@ #ifndef _LINUX_VIDEO_DECODER_H #define _LINUX_VIDEO_DECODER_H +#include <linux/types.h> + #define HAVE_VIDEO_DECODER 1 struct video_decoder_capability { /* this name is too long */ |