Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 103880
b: refs/heads/master
c: 9c169df
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Mauro Carvalho Chehab committed Jul 20, 2008
1 parent f8d189b commit 9ce719b
Show file tree
Hide file tree
Showing 3 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: 86ecc02755ea2d00925b344272b49b26d610bbe2
refs/heads/master: 9c169df8d6877c618587bf40498f2ef378c97eb8
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/zoran_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ zr36057_init (struct zoran *zr)
goto exit_free;
}
for (j = 0; j < BUZ_NUM_STAT_COM; j++) {
zr->stat_com[j] = 1; /* mark as unavailable to zr36057 */
zr->stat_com[j] = cpu_to_le32(1); /* mark as unavailable to zr36057 */
}

/*
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/video/zoran_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2794,7 +2794,7 @@ zoran_do_ioctl (struct inode *inode,
{
struct v4l2_format *fmt = arg;
int i, res = 0;
__u32 printformat;
__le32 printformat;

dprintk(3, KERN_DEBUG "%s: VIDIOC_S_FMT - type=%d, ",
ZR_DEVNAME(zr), fmt->type);
Expand Down Expand Up @@ -3039,7 +3039,7 @@ zoran_do_ioctl (struct inode *inode,
{
int i, res = 0;
struct v4l2_framebuffer *fb = arg;
__u32 printformat = __cpu_to_le32(fb->fmt.pixelformat);
__le32 printformat = __cpu_to_le32(fb->fmt.pixelformat);

dprintk(3,
KERN_DEBUG
Expand Down

0 comments on commit 9ce719b

Please sign in to comment.