Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d026d828 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

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: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 266815e2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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(PAGE_SIZE, size), 0);
		size -= min(PAGE_SIZE, size);
		sg_set_page(&sglist[i], pages[i], min((unsigned)PAGE_SIZE, size), 0);
		size -= min((unsigned)PAGE_SIZE, size);
	}
	return sglist;