Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 124557
b: refs/heads/master
c: 513791a
h: refs/heads/master
i:
  124555: 4965dfe
v: v3
  • Loading branch information
Kuninori Morimoto authored and Mauro Carvalho Chehab committed Dec 30, 2008
1 parent 2a9a142 commit bf8d54f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 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: 9e4a56d27f6150b0c9f8c7cc33ea944749377104
refs/heads/master: 513791aba6266e0c15d5b697b97e956e83537f5a
9 changes: 8 additions & 1 deletion trunk/drivers/media/video/soc_camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,14 @@ static int soc_camera_s_input(struct file *file, void *priv, unsigned int i)

static int soc_camera_s_std(struct file *file, void *priv, v4l2_std_id *a)
{
return 0;
struct soc_camera_file *icf = file->private_data;
struct soc_camera_device *icd = icf->icd;
int ret = 0;

if (icd->ops->set_std)
ret = icd->ops->set_std(icd, a);

return ret;
}

static int soc_camera_reqbufs(struct file *file, void *priv,
Expand Down
1 change: 1 addition & 0 deletions trunk/include/media/soc_camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ struct soc_camera_ops {
int (*set_bus_param)(struct soc_camera_device *, unsigned long);
int (*get_chip_id)(struct soc_camera_device *,
struct v4l2_chip_ident *);
int (*set_std)(struct soc_camera_device *, v4l2_std_id *);
#ifdef CONFIG_VIDEO_ADV_DEBUG
int (*get_register)(struct soc_camera_device *, struct v4l2_register *);
int (*set_register)(struct soc_camera_device *, struct v4l2_register *);
Expand Down

0 comments on commit bf8d54f

Please sign in to comment.