The patch titled videodev2.h fix has been removed from the -mm tree. Its filename is trivial-videodev2h-patch.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: videodev2.h fix From: "David Mosberger-Tang" <David.Mosberger@xxxxxxx> linux/videodev2.h uses types such as __u8 but it fails to include <linux/types.h>. Within the kernel, that's not a problem because <linux/time.h> already includes <linux/types.h>. However, there are user apps that try to include videodev2.h (e.g., ekiga) and at least on ia64, it causes compilation failures since <linux/types.h> doesn't get included for any other reason, leaving __u8 etc. undefined. Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/videodev2.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/linux/videodev2.h~trivial-videodev2h-patch include/linux/videodev2.h --- devel/include/linux/videodev2.h~trivial-videodev2h-patch 2006-06-01 20:21:48.000000000 -0700 +++ devel-akpm/include/linux/videodev2.h 2006-06-01 20:21:48.000000000 -0700 @@ -19,6 +19,7 @@ #include <linux/device.h> #include <linux/mutex.h> #endif +#include <linux/types.h> #include <linux/compiler.h> /* need __user */ _ Patches currently in -mm which might be from David.Mosberger@xxxxxxx are git-dvb.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html