Commit 83fa235b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] meye: fix a warning

drivers/media/pci/meye/meye.c:1948:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 3eeba4a7
...@@ -1945,7 +1945,7 @@ static struct pci_driver meye_driver = { ...@@ -1945,7 +1945,7 @@ static struct pci_driver meye_driver = {
static int __init meye_init(void) static int __init meye_init(void)
{ {
gbuffers = max(2, min((int)gbuffers, MEYE_MAX_BUFNBRS)); gbuffers = max(2, min((int)gbuffers, MEYE_MAX_BUFNBRS));
if (gbufsize < 0 || gbufsize > MEYE_MAX_BUFSIZE) if (gbufsize > MEYE_MAX_BUFSIZE)
gbufsize = MEYE_MAX_BUFSIZE; gbufsize = MEYE_MAX_BUFSIZE;
gbufsize = PAGE_ALIGN(gbufsize); gbufsize = PAGE_ALIGN(gbufsize);
printk(KERN_INFO "meye: using %d buffers with %dk (%dk total) " printk(KERN_INFO "meye: using %d buffers with %dk (%dk total) "
......
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