diff options
Diffstat (limited to 'drivers/media/v4l2-core/v4l2-dev.c')
| -rw-r--r-- | drivers/media/v4l2-core/v4l2-dev.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/v4l2-core/v4l2-dev.c b/drivers/media/v4l2-core/v4l2-dev.c index da42d172714a..97b6a3af1361 100644 --- a/drivers/media/v4l2-core/v4l2-dev.c +++ b/drivers/media/v4l2-core/v4l2-dev.c @@ -542,13 +542,13 @@ static void determine_valid_ioctls(struct video_device *vdev)  			      V4L2_CAP_META_OUTPUT;  	DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);  	const struct v4l2_ioctl_ops *ops = vdev->ioctl_ops; -	bool is_vid = vdev->vfl_type == VFL_TYPE_GRABBER && +	bool is_vid = vdev->vfl_type == VFL_TYPE_VIDEO &&  		      (vdev->device_caps & vid_caps);  	bool is_vbi = vdev->vfl_type == VFL_TYPE_VBI;  	bool is_radio = vdev->vfl_type == VFL_TYPE_RADIO;  	bool is_sdr = vdev->vfl_type == VFL_TYPE_SDR;  	bool is_tch = vdev->vfl_type == VFL_TYPE_TOUCH; -	bool is_meta = vdev->vfl_type == VFL_TYPE_GRABBER && +	bool is_meta = vdev->vfl_type == VFL_TYPE_VIDEO &&  		       (vdev->device_caps & meta_caps);  	bool is_rx = vdev->vfl_dir != VFL_DIR_TX;  	bool is_tx = vdev->vfl_dir != VFL_DIR_RX; @@ -783,7 +783,7 @@ static int video_register_media_controller(struct video_device *vdev)  	vdev->entity.function = MEDIA_ENT_F_UNKNOWN;  	switch (vdev->vfl_type) { -	case VFL_TYPE_GRABBER: +	case VFL_TYPE_VIDEO:  		intf_type = MEDIA_INTF_T_V4L_VIDEO;  		vdev->entity.function = MEDIA_ENT_F_IO_V4L;  		break; @@ -891,7 +891,7 @@ int __video_register_device(struct video_device *vdev,  	/* Part 1: check device type */  	switch (type) { -	case VFL_TYPE_GRABBER: +	case VFL_TYPE_VIDEO:  		name_base = "video";  		break;  	case VFL_TYPE_VBI: @@ -935,7 +935,7 @@ int __video_register_device(struct video_device *vdev,  	 * of 128-191 and just pick the first free minor there  	 * (new style). */  	switch (type) { -	case VFL_TYPE_GRABBER: +	case VFL_TYPE_VIDEO:  		minor_offset = 0;  		minor_cnt = 64;  		break;  |