diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-05-11 09:36:34 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-02 14:25:57 -0400 |
commit | bb6dbe74806a17bcec8396c57ca7fd9a889e3b27 (patch) | |
tree | 853278c1d41fbf81cde3e72599f7eade46901276 /drivers/media/video/cx88/cx88-alsa.c | |
parent | 959794ddc05ab6fbcd458bc093e7f0b92633d052 (diff) |
V4L/DVB: videobuf: Rename vmalloc fields to vaddr
The videobuf_dmabuf and videobuf_vmalloc_memory fields have a vmalloc
field to store the kernel virtual address of vmalloc'ed buffers. Rename
the field to vaddr.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88/cx88-alsa.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c index ba499d04de4d..9209d5b87e04 100644 --- a/drivers/media/video/cx88/cx88-alsa.c +++ b/drivers/media/video/cx88/cx88-alsa.c | |||
@@ -426,7 +426,7 @@ static int snd_cx88_hw_params(struct snd_pcm_substream * substream, | |||
426 | chip->buf = buf; | 426 | chip->buf = buf; |
427 | chip->dma_risc = dma; | 427 | chip->dma_risc = dma; |
428 | 428 | ||
429 | substream->runtime->dma_area = chip->dma_risc->vmalloc; | 429 | substream->runtime->dma_area = chip->dma_risc->vaddr; |
430 | substream->runtime->dma_bytes = chip->dma_size; | 430 | substream->runtime->dma_bytes = chip->dma_size; |
431 | substream->runtime->dma_addr = 0; | 431 | substream->runtime->dma_addr = 0; |
432 | return 0; | 432 | return 0; |