Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320031
b: refs/heads/master
c: 5d317ab
h: refs/heads/master
i:
  320029: bf1fd86
  320027: 71c9640
  320023: 6fb3682
  320015: f3a2206
  319999: 0a16c7c
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jun 21, 2012
1 parent af11005 commit 186bcf4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 28 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: df462902ea81de9931ea33c3cb3b50ae819db296
refs/heads/master: 5d317abe7bd1b448efaa4ad0813c19f866aa7a4b
45 changes: 18 additions & 27 deletions trunk/drivers/media/video/zr364xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
#include <media/v4l2-ioctl.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-fh.h>
#include <media/v4l2-event.h>
#include <media/videobuf-vmalloc.h>


Expand Down Expand Up @@ -195,7 +197,6 @@ struct zr364xx_camera {

const struct zr364xx_fmt *fmt;
struct videobuf_queue vb_vidq;
enum v4l2_buf_type type;
};

/* buffer for one video frame */
Expand Down Expand Up @@ -473,8 +474,7 @@ static ssize_t zr364xx_read(struct file *file, char __user *buf, size_t count,
if (mutex_lock_interruptible(&cam->lock))
return -ERESTARTSYS;

if (cam->type == V4L2_BUF_TYPE_VIDEO_CAPTURE &&
zr364xx_vidioc_streamon(file, cam, cam->type) == 0) {
if (zr364xx_vidioc_streamon(file, cam, V4L2_BUF_TYPE_VIDEO_CAPTURE) == 0) {
DBG("%s: reading %d bytes at pos %d.\n", __func__, (int) count,
(int) *ppos);

Expand Down Expand Up @@ -1146,14 +1146,8 @@ static int zr364xx_vidioc_streamon(struct file *file, void *priv,

DBG("%s\n", __func__);

if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
dev_err(&cam->udev->dev, "invalid fh type0\n");
if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL;
}
if (cam->type != type) {
dev_err(&cam->udev->dev, "invalid fh type1\n");
return -EINVAL;
}

if (!res_get(cam)) {
dev_err(&cam->udev->dev, "stream busy\n");
Expand Down Expand Up @@ -1183,14 +1177,8 @@ static int zr364xx_vidioc_streamoff(struct file *file, void *priv,
struct zr364xx_camera *cam = video_drvdata(file);

DBG("%s\n", __func__);
if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
dev_err(&cam->udev->dev, "invalid fh type0\n");
if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL;
}
if (cam->type != type) {
dev_err(&cam->udev->dev, "invalid fh type1\n");
return -EINVAL;
}
zr364xx_stop_acquire(cam);
res = videobuf_streamoff(&cam->vb_vidq);
if (res < 0)
Expand All @@ -1203,7 +1191,6 @@ static int zr364xx_vidioc_streamoff(struct file *file, void *priv,
/* open the camera */
static int zr364xx_open(struct file *file)
{
struct video_device *vdev = video_devdata(file);
struct zr364xx_camera *cam = video_drvdata(file);
struct usb_device *udev = cam->udev;
int i, err;
Expand All @@ -1218,6 +1205,10 @@ static int zr364xx_open(struct file *file)
goto out;
}

err = v4l2_fh_open(file);
if (err)
goto out;

for (i = 0; init[cam->method][i].size != -1; i++) {
err =
send_control_msg(udev, 1, init[cam->method][i].value,
Expand All @@ -1226,19 +1217,18 @@ static int zr364xx_open(struct file *file)
if (err < 0) {
dev_err(&cam->udev->dev,
"error during open sequence: %d\n", i);
v4l2_fh_release(file);
goto out;
}
}

cam->skip = 2;
cam->users++;
file->private_data = vdev;
cam->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
cam->fmt = formats;

videobuf_queue_vmalloc_init(&cam->vb_vidq, &zr364xx_video_qops,
NULL, &cam->slock,
cam->type,
V4L2_BUF_TYPE_VIDEO_CAPTURE,
V4L2_FIELD_NONE,
sizeof(struct zr364xx_buffer), cam, &cam->lock);

Expand Down Expand Up @@ -1301,7 +1291,6 @@ static int zr364xx_close(struct file *file)
}

cam->users--;
file->private_data = NULL;

for (i = 0; i < 2; i++) {
send_control_msg(udev, 1, init[cam->method][i].value,
Expand All @@ -1314,7 +1303,7 @@ static int zr364xx_close(struct file *file)
*/
mdelay(100);
mutex_unlock(&cam->lock);
return 0;
return v4l2_fh_release(file);
}


Expand Down Expand Up @@ -1342,12 +1331,11 @@ static unsigned int zr364xx_poll(struct file *file,
{
struct zr364xx_camera *cam = video_drvdata(file);
struct videobuf_queue *q = &cam->vb_vidq;
_DBG("%s\n", __func__);
unsigned res = v4l2_ctrl_poll(file, wait);

if (cam->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return POLLERR;
_DBG("%s\n", __func__);

return videobuf_poll_stream(file, q, wait);
return res | videobuf_poll_stream(file, q, wait);
}

static const struct v4l2_ctrl_ops zr364xx_ctrl_ops = {
Expand Down Expand Up @@ -1379,6 +1367,9 @@ static const struct v4l2_ioctl_ops zr364xx_ioctl_ops = {
.vidioc_querybuf = zr364xx_vidioc_querybuf,
.vidioc_qbuf = zr364xx_vidioc_qbuf,
.vidioc_dqbuf = zr364xx_vidioc_dqbuf,
.vidioc_log_status = v4l2_ctrl_log_status,
.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
};

static struct video_device zr364xx_template = {
Expand Down

0 comments on commit 186bcf4

Please sign in to comment.