Commit 71590765 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] cx231xx: get rid of a bunch of unused cx231xx_fh fields

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1265f080
...@@ -1621,9 +1621,6 @@ static int vidioc_streamoff(struct file *file, void *priv, ...@@ -1621,9 +1621,6 @@ static int vidioc_streamoff(struct file *file, void *priv,
if (rc < 0) if (rc < 0)
return rc; return rc;
if ((fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) &&
(fh->type != V4L2_BUF_TYPE_VBI_CAPTURE))
return -EINVAL;
if (type != fh->type) if (type != fh->type)
return -EINVAL; return -EINVAL;
...@@ -1869,7 +1866,6 @@ static int cx231xx_v4l2_open(struct file *filp) ...@@ -1869,7 +1866,6 @@ static int cx231xx_v4l2_open(struct file *filp)
return -ERESTARTSYS; return -ERESTARTSYS;
} }
fh->dev = dev; fh->dev = dev;
fh->radio = radio;
fh->type = fh_type; fh->type = fh_type;
filp->private_data = fh; filp->private_data = fh;
v4l2_fh_init(&fh->fh, vdev); v4l2_fh_init(&fh->fh, vdev);
...@@ -1900,7 +1896,7 @@ static int cx231xx_v4l2_open(struct file *filp) ...@@ -1900,7 +1896,7 @@ static int cx231xx_v4l2_open(struct file *filp)
dev->video_input = dev->video_input > 2 ? 2 : dev->video_input; dev->video_input = dev->video_input > 2 ? 2 : dev->video_input;
} }
if (fh->radio) { if (radio) {
cx231xx_videodbg("video_open: setting radio device\n"); cx231xx_videodbg("video_open: setting radio device\n");
/* cx231xx_start_radio(dev); */ /* cx231xx_start_radio(dev); */
......
...@@ -433,25 +433,9 @@ struct cx231xx_fh { ...@@ -433,25 +433,9 @@ struct cx231xx_fh {
struct v4l2_fh fh; struct v4l2_fh fh;
struct cx231xx *dev; struct cx231xx *dev;
unsigned int stream_on:1; /* Locks streams */ unsigned int stream_on:1; /* Locks streams */
int radio;
struct videobuf_queue vb_vidq;
enum v4l2_buf_type type; enum v4l2_buf_type type;
struct videobuf_queue vb_vidq;
/*following is copyed from cx23885.h*/
u32 resources;
/* video overlay */
struct v4l2_window win;
struct v4l2_clip *clips;
unsigned int nclips;
/* video capture */
struct cx23417_fmt *fmt;
unsigned int width, height;
/* vbi capture */ /* vbi capture */
struct videobuf_queue vidq; struct videobuf_queue vidq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment