提交 d026d828 编写于 作者: M Mauro Carvalho Chehab

V4L/DVB: videobuf-dma-sg: Fix a warning due to the usage of min(PAGE_SIZE, arg)

drivers/media/video/videobuf-dma-sg.c: In function ‘videobuf_pages_to_sg’:
drivers/media/video/videobuf-dma-sg.c:119: warning: comparison of distinct pointer types lacks a cast
drivers/media/video/videobuf-dma-sg.c:120: warning: comparison of distinct pointer types lacks a cast
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 266815e2
...@@ -116,8 +116,8 @@ static struct scatterlist *videobuf_pages_to_sg(struct page **pages, ...@@ -116,8 +116,8 @@ static struct scatterlist *videobuf_pages_to_sg(struct page **pages,
goto nopage; goto nopage;
if (PageHighMem(pages[i])) if (PageHighMem(pages[i]))
goto highmem; goto highmem;
sg_set_page(&sglist[i], pages[i], min(PAGE_SIZE, size), 0); sg_set_page(&sglist[i], pages[i], min((unsigned)PAGE_SIZE, size), 0);
size -= min(PAGE_SIZE, size); size -= min((unsigned)PAGE_SIZE, size);
} }
return sglist; return sglist;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册