V4L/DVB (5893): DVB: fix includes of video.h when __KERNEL__ is undefined From: Anssi Hannula linux/dvb/video.h uses types __u32, __s32, etc., but does not include any header defining those when __KERNEL__ is not defined. Fix this by including asm/types.h when __KERNEL__ is not defined. Signed-off-by: Anssi Hannula Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab --- include/linux/dvb/video.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 93e4c3a..50839fe 100644 --- a/include/linux/dvb/video.h +++ b/include/linux/dvb/video.h @@ -29,6 +29,7 @@ #ifdef __KERNEL__ #include #else +#include #include #include #endif