diff -Naurz udev-166.orig/extras/v4l_id/v4l_id.c udev-166/extras/v4l_id/v4l_id.c
--- udev-166.orig/extras/v4l_id/v4l_id.c
+++ udev-166/extras/v4l_id/v4l_id.c
@@ -28,7 +28,7 @@
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/ioctl.h>
-#include <linux/videodev.h>
+//#include <linux/videodev.h>
 #include <linux/videodev2.h>
 
 int main (int argc, char *argv[])
@@ -39,7 +39,7 @@
 	};
 	int fd;
 	char *device;
-	struct video_capability v1cap;
+//	struct video_capability v1cap;
 	struct v4l2_capability v2cap;
 
 	while (1) {
@@ -82,7 +82,7 @@
 		if ((v2cap.capabilities & V4L2_CAP_RADIO) > 0)
 			printf("radio:");
 		printf("\n");
-	} else if (ioctl (fd, VIDIOCGCAP, &v1cap) == 0) {
+	}/* else if (ioctl (fd, VIDIOCGCAP, &v1cap) == 0) {
 		printf("ID_V4L_VERSION=1\n");
 		printf("ID_V4L_PRODUCT=%s\n", v1cap.name);
 		printf("ID_V4L_CAPABILITIES=:");
@@ -95,7 +95,7 @@
 		if ((v1cap.type & VID_TYPE_TUNER) > 0)
 			printf("tuner:");
 		printf("\n");
-	}
+	}*/
 
 	close (fd);
 	return 0;
