Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357019
b: refs/heads/master
c: 59dad49
h: refs/heads/master
i:
  357017: 60af0c0
  357015: d80945e
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Dec 20, 2012
1 parent 9062e3f commit 68b088f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: 6ec5575c381de50b17e68796435f20ce1b27de79
refs/heads/master: 59dad49e5c176d8c9c0d06f6b744d0a54c578310
10 changes: 6 additions & 4 deletions trunk/drivers/media/platform/sh_veu.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,17 @@ static void sh_veu_process(struct sh_veu_dev *veu,
sh_veu_reg_write(veu, VEU_DAYR, addr + veu->vfmt_out.offset_y);
sh_veu_reg_write(veu, VEU_DACR, veu->vfmt_out.offset_c ?
addr + veu->vfmt_out.offset_c : 0);
dev_dbg(veu->dev, "%s(): dst base %x, y: %x, c: %x\n", __func__,
addr, veu->vfmt_out.offset_y, veu->vfmt_out.offset_c);
dev_dbg(veu->dev, "%s(): dst base %lx, y: %x, c: %x\n", __func__,
(unsigned long)addr,
veu->vfmt_out.offset_y, veu->vfmt_out.offset_c);

addr = vb2_dma_contig_plane_dma_addr(src_buf, 0);
sh_veu_reg_write(veu, VEU_SAYR, addr + veu->vfmt_in.offset_y);
sh_veu_reg_write(veu, VEU_SACR, veu->vfmt_in.offset_c ?
addr + veu->vfmt_in.offset_c : 0);
dev_dbg(veu->dev, "%s(): src base %x, y: %x, c: %x\n", __func__,
addr, veu->vfmt_in.offset_y, veu->vfmt_in.offset_c);
dev_dbg(veu->dev, "%s(): src base %lx, y: %x, c: %x\n", __func__,
(unsigned long)addr,
veu->vfmt_in.offset_y, veu->vfmt_in.offset_c);

sh_veu_reg_write(veu, VEU_STR, 1);

Expand Down

0 comments on commit 68b088f

Please sign in to comment.