From 89f50bf63778018708e29ca0a874c72cb81f77f9 Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Fri, 20 Jul 2007 17:18:10 -0300 Subject: V4L/DVB (5893): DVB: fix includes of video.h when __KERNEL__ is undefined 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 file changed, 1 insertion(+) (limited to 'include/linux/dvb') diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 93e4c3a6d190..50839fe9e39e 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 -- cgit v1.2.3