From 35006ff0b9db3efb1546bb3d08bfa586b2eacac2 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Fri, 26 May 2006 10:28:13 -0300 Subject: Trivial videodev2.h patch From: David Mosberger-Tang linux/videodev2.h uses types such as __u8 but it fails to include . Within the kernel, that's not a problem because already includes . However, there are user apps that try to include videodev2.h (e.g., ekiga) and at least on ia64, it causes compilation failures since doesn't get included for any other reason, leaving __u8 etc. undefined. The attached patch fixes the problem for me. Signed-off-by: Andrew Morton Signed-off-by: Mauro Carvalho Chehab --- linux/include/linux/videodev2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/linux/include/linux/videodev2.h b/linux/include/linux/videodev2.h index 5d46a8d2a..47e70ab7a 100644 --- a/linux/include/linux/videodev2.h +++ b/linux/include/linux/videodev2.h @@ -26,6 +26,7 @@ #endif #endif #endif +#include #include /* need __user */ -- cgit v1.2.3