Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33279
b: refs/heads/master
c: 17531c1
h: refs/heads/master
i:
  33277: 6ba83f2
  33275: 773b11f
  33271: 13c82f6
  33263: ec59513
  33247: ab5ba3c
  33215: d8ddba9
  33151: 018dfd9
  33023: 7fd7f20
  32767: 5ae4f03
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Aug 8, 2006
1 parent a3d5b45 commit e17f0e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: b02dc515914bc37f5e406cc6f622fc06991eb779
refs/heads/master: 17531c168c7b8138b5379a85de788798fc6696e1
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/cx25840/cx25840-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ u32 cx25840_read4(struct i2c_client * client, u16 addr)
if (i2c_master_recv(client, buffer, 4) < 4)
return 0;

return (buffer[0] << 24) | (buffer[1] << 16) |
(buffer[2] << 8) | buffer[3];
return (buffer[3] << 24) | (buffer[2] << 16) |
(buffer[1] << 8) | buffer[0];
}

int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned and_mask,
Expand Down

0 comments on commit e17f0e9

Please sign in to comment.