Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285264
b: refs/heads/master
c: c14ea5e
h: refs/heads/master
v: v3
  • Loading branch information
Leonid V. Fedorenchik authored and Mauro Carvalho Chehab committed Nov 24, 2011
1 parent dfea8db commit e4e6178
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 43365d5d135eef910fcc1f211d9668e561517b0c
refs/heads/master: c14ea5e59f80082fc58bfabe300ae5a6560f7958
8 changes: 4 additions & 4 deletions trunk/drivers/media/video/cx25821/cx25821-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ static int cx25821_get_resources(struct cx25821_dev *dev)
return 0;

pr_err("%s: can't get MMIO memory @ 0x%llx\n",
dev->name, (unsigned long long)pci_resource_start(dev->pci, 0));
dev->name, (unsigned long long)pci_resource_start(dev->pci, 0));

return -EBUSY;
}
Expand Down Expand Up @@ -994,7 +994,7 @@ static int cx25821_dev_setup(struct cx25821_dev *dev)
* cx25821_i2c_register(&dev->i2c_bus[2]); */

CX25821_INFO("i2c register! bus->i2c_rc = %d\n",
dev->i2c_bus[0].i2c_rc);
dev->i2c_bus[0].i2c_rc);

cx25821_card_setup(dev);

Expand Down Expand Up @@ -1224,15 +1224,15 @@ static __le32 *cx25821_risc_field_audio(__le32 * rp, struct scatterlist *sglist,
/* scanline needs to be split */
todo = bpl;
*(rp++) = cpu_to_le32(RISC_WRITE | sol |
(sg_dma_len(sg) - offset));
(sg_dma_len(sg) - offset));
*(rp++) = cpu_to_le32(sg_dma_address(sg) + offset);
*(rp++) = cpu_to_le32(0); /* bits 63-32 */
todo -= (sg_dma_len(sg) - offset);
offset = 0;
sg++;
while (todo > sg_dma_len(sg)) {
*(rp++) = cpu_to_le32(RISC_WRITE |
sg_dma_len(sg));
sg_dma_len(sg));
*(rp++) = cpu_to_le32(sg_dma_address(sg));
*(rp++) = cpu_to_le32(0); /* bits 63-32 */
todo -= sg_dma_len(sg);
Expand Down

0 comments on commit e4e6178

Please sign in to comment.