Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89f50bf63778018708e29ca0a874c72cb81f77f9
Commit:     89f50bf63778018708e29ca0a874c72cb81f77f9
Parent:     9896bbc1972e3a0595f06c23692a20150a789308
Author:     Anssi Hannula <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 20 17:18:10 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Mon Jul 30 16:26:27 2007 -0300

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 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 <linux/types.h>
 #else
+#include <asm/types.h>
 #include <stdint.h>
 #include <time.h>
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to