mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
[media] videobuf-dma-sg: Use min_t(size_t, PAGE_SIZE ..)
As pointed by Laurent: I think min_t(size_t, PAGE_SIZE, size) is the preferred way. Thanks-to: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
22c00854f3
commit
1bede7521d
@ -116,8 +116,8 @@ static struct scatterlist *videobuf_pages_to_sg(struct page **pages,
|
||||
goto nopage;
|
||||
if (PageHighMem(pages[i]))
|
||||
goto highmem;
|
||||
sg_set_page(&sglist[i], pages[i], min((unsigned)PAGE_SIZE, size), 0);
|
||||
size -= min((unsigned)PAGE_SIZE, size);
|
||||
sg_set_page(&sglist[i], pages[i], min_t(size_t, PAGE_SIZE, size), 0);
|
||||
size -= min_t(size_t, PAGE_SIZE, size);
|
||||
}
|
||||
return sglist;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user