Commit 50fbe32c authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab

[media] videobuf-dma-contig: use gfp_t for GFP flags

Sparse complains if about using unsigned long.
videobuf-dma-contig.c:47:67: warning: restricted gfp_t degrades to integer
videobuf-dma-contig.c:47:65: warning: incorrect type in argument 2 (different base types)
videobuf-dma-contig.c:47:65:    expected restricted gfp_t [usertype] gfp_mask
videobuf-dma-contig.c:47:65:    got unsigned long
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent fc3f906b
...@@ -40,7 +40,7 @@ struct videobuf_dma_contig_memory { ...@@ -40,7 +40,7 @@ struct videobuf_dma_contig_memory {
static int __videobuf_dc_alloc(struct device *dev, static int __videobuf_dc_alloc(struct device *dev,
struct videobuf_dma_contig_memory *mem, struct videobuf_dma_contig_memory *mem,
unsigned long size, unsigned long flags) unsigned long size, gfp_t flags)
{ {
mem->size = size; mem->size = size;
if (mem->cached) { if (mem->cached) {
......
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