Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 192757
b: refs/heads/master
c: e10f731
h: refs/heads/master
i:
  192755: ad4b183
v: v3
  • Loading branch information
German Galkin authored and Mauro Carvalho Chehab committed May 18, 2010
1 parent 872a8bb commit 14fb48a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 24f222e77ad62e41b1a882c77feeb8268c80b909
refs/heads/master: e10f73194d63321d020433fa1287e619d4107b79
6 changes: 3 additions & 3 deletions trunk/drivers/media/video/gspca/sn9c20x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1655,9 +1655,9 @@ static int set_exposure(struct gspca_dev *gspca_dev)
case SENSOR_HV7131R:
exp[0] |= (4 << 4);
exp[2] = 0x25;
exp[3] = ((sd->exposure * 0xffffff) / 0xffff) >> 16;
exp[4] = ((sd->exposure * 0xffffff) / 0xffff) >> 8;
exp[5] = ((sd->exposure * 0xffffff) / 0xffff) & 0xff;
exp[3] = (sd->exposure >> 5) & 0xff;
exp[4] = (sd->exposure << 3) & 0xff;
exp[5] = 0;
break;
default:
return 0;
Expand Down

0 comments on commit 14fb48a

Please sign in to comment.