diff options
| author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 11:54:09 -0500 |
|---|---|---|
| committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 13:40:11 -0500 |
| commit | a4c1d7c8c61969667a853d08b039507669463807 (patch) | |
| tree | 564da0adaf5859d4f6138b2f9da0e8a158ec0870 | |
| parent | 8b1e3a2f7f84484a8c208671adac39eb148c7d61 (diff) | |
headers_check fix: linux/video_encoder.h
fix the following 'make headers_check' warning:
usr/include/linux/video_encoder.h:5: 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/video_encoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/video_encoder.h b/include/linux/video_encoder.h index 4b0e6907a7b4..b7b6423bbb8a 100644 --- a/include/linux/video_encoder.h +++ b/include/linux/video_encoder.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_VIDEO_ENCODER_H | 1 | #ifndef _LINUX_VIDEO_ENCODER_H |
| 2 | #define _LINUX_VIDEO_ENCODER_H | 2 | #define _LINUX_VIDEO_ENCODER_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | struct video_encoder_capability { /* this name is too long */ | 6 | struct video_encoder_capability { /* this name is too long */ |
| 5 | __u32 flags; | 7 | __u32 flags; |
| 6 | #define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */ | 8 | #define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */ |
