Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137727
b: refs/heads/master
c: 07f7db4
h: refs/heads/master
i:
  137725: 5aff909
  137723: 5cab17d
  137719: 31ed4a5
  137711: bcdf8b8
  137695: 447f0a4
  137663: fd8c211
  137599: 84075fc
  137471: 2e32a79
  137215: db91301
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 724e1d8 commit 1000854
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 71bf2e08ce197ab7a92215cb4e08a68c755e32f9
refs/heads/master: 07f7db4ce7b29d431553b426e0dcb720c5297a4b
7 changes: 6 additions & 1 deletion trunk/drivers/media/video/em28xx/em28xx-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1008,8 +1008,13 @@ static int vidioc_g_ctrl(struct file *file, void *priv,

if (dev->board.has_msp34xx)
em28xx_i2c_call_clients(dev, VIDIOC_G_CTRL, ctrl);
else
else {
rc = em28xx_get_ctrl(dev, ctrl);
if (rc < 0) {
em28xx_i2c_call_clients(dev, VIDIOC_G_CTRL, ctrl);
rc = 0;
}
}

mutex_unlock(&dev->lock);
return rc;
Expand Down

0 comments on commit 1000854

Please sign in to comment.