diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2008-06-22 13:19:19 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-20 06:13:14 -0400 |
commit | a36ef6b1e09d06d4f1ac769eee4bd7e6cf3e0fae (patch) | |
tree | 099f489f485cbe8f44f3e8e3c8cb0e5b777d401d /drivers/media/common/saa7146_hlp.c | |
parent | f51b10ef6520f2bd725dc333e771eabd55d6c04f (diff) |
V4L/DVB (8128): saa7146: ->cpu_addr and friends are little-endian
Annotations + stop saa7146_i2c from playing fast and loose with
reuse of ->cpu_addr for host-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/common/saa7146_hlp.c')
-rw-r--r-- | drivers/media/common/saa7146_hlp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/saa7146_hlp.c b/drivers/media/common/saa7146_hlp.c index 9c905399a233..05bde9ccb770 100644 --- a/drivers/media/common/saa7146_hlp.c +++ b/drivers/media/common/saa7146_hlp.c | |||
@@ -338,7 +338,7 @@ static void calculate_clipping_registers_rect(struct saa7146_dev *dev, struct sa | |||
338 | struct saa7146_video_dma *vdma2, u32* clip_format, u32* arbtr_ctrl, enum v4l2_field field) | 338 | struct saa7146_video_dma *vdma2, u32* clip_format, u32* arbtr_ctrl, enum v4l2_field field) |
339 | { | 339 | { |
340 | struct saa7146_vv *vv = dev->vv_data; | 340 | struct saa7146_vv *vv = dev->vv_data; |
341 | u32 *clipping = vv->d_clipping.cpu_addr; | 341 | __le32 *clipping = vv->d_clipping.cpu_addr; |
342 | 342 | ||
343 | int width = fh->ov.win.w.width; | 343 | int width = fh->ov.win.w.width; |
344 | int height = fh->ov.win.w.height; | 344 | int height = fh->ov.win.w.height; |