From: Anssi Hannula Date: Fri, 20 Jul 2007 20:18:10 +0000 (-0300) Subject: V4L/DVB (5893): DVB: fix includes of video.h when __KERNEL__ is undefined X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=89f50bf63778018708e29ca0a874c72cb81f77f9;p=linux-beck.git 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 --- 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