Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113848
b: refs/heads/master
c: 614b147
h: refs/heads/master
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Oct 12, 2008
1 parent ae3b72d commit 6f5b503
Show file tree
Hide file tree
Showing 5 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: 513edce60f184d90ef4a6d33917264d49c2b07fd
refs/heads/master: 614b147b4f8f38a090f88ac02f67b01225bb5d54
2 changes: 1 addition & 1 deletion trunk/drivers/media/common/saa7146_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void saa7146_pgtable_free(struct pci_dev *pci, struct saa7146_pgtable *pt)
int saa7146_pgtable_alloc(struct pci_dev *pci, struct saa7146_pgtable *pt)
{
__le32 *cpu;
dma_addr_t dma_addr;
dma_addr_t dma_addr = 0;

cpu = pci_alloc_consistent(pci, PAGE_SIZE, &dma_addr);
if (NULL == cpu) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/b2c2/flexcop-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
int flexcop_dma_allocate(struct pci_dev *pdev, struct flexcop_dma *dma, u32 size)
{
u8 *tcpu;
dma_addr_t tdma;
dma_addr_t tdma = 0;

if (size % 2) {
err("dma buffersize has to be even.");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/btcx-risc.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ int btcx_riscmem_alloc(struct pci_dev *pci,
unsigned int size)
{
__le32 *cpu;
dma_addr_t dma;
dma_addr_t dma = 0;

if (NULL != risc->cpu && risc->size < size)
btcx_riscmem_free(pci,risc);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/saa7134/saa7134-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ unsigned long saa7134_buffer_base(struct saa7134_buf *buf)
int saa7134_pgtable_alloc(struct pci_dev *pci, struct saa7134_pgtable *pt)
{
__le32 *cpu;
dma_addr_t dma_addr;
dma_addr_t dma_addr = 0;

cpu = pci_alloc_consistent(pci, SAA7134_PGTABLE_SIZE, &dma_addr);
if (NULL == cpu)
Expand Down

0 comments on commit 6f5b503

Please sign in to comment.