Commit 79ef87ed authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab

[media] videobuf-dma-contig: Use NULL instead of plain integer

Fixes the following sparse warning:
drivers/media/video/videobuf-dma-contig.c:59:46:
warning: Using plain integer as NULL pointer
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent db3912c0
...@@ -56,7 +56,7 @@ static int __videobuf_dc_alloc(struct device *dev, ...@@ -56,7 +56,7 @@ static int __videobuf_dc_alloc(struct device *dev,
dev_err(dev, "dma_map_single failed\n"); dev_err(dev, "dma_map_single failed\n");
free_pages_exact(mem->vaddr, mem->size); free_pages_exact(mem->vaddr, mem->size);
mem->vaddr = 0; mem->vaddr = NULL;
return err; return err;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment