|
@@ -402,13 +402,8 @@ static int vidioc_querycap(struct file *file, void *priv,
|
|
|
{
|
|
|
strncpy(cap->driver, MEM2MEM_NAME, sizeof(cap->driver) - 1);
|
|
|
strncpy(cap->card, MEM2MEM_NAME, sizeof(cap->card) - 1);
|
|
|
- /*
|
|
|
- * This is only a mem-to-mem video device. The capture and output
|
|
|
- * device capability flags are left only for backward compatibility
|
|
|
- * and are scheduled for removal.
|
|
|
- */
|
|
|
- cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT |
|
|
|
- V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
|
|
|
+ cap->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING;
|
|
|
+ cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
|
|
|
return 0;
|
|
|
}
|
|
|
|