diff options
Diffstat (limited to 'drivers/media/pci/meye/meye.c')
-rw-r--r-- | drivers/media/pci/meye/meye.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/meye/meye.c b/drivers/media/pci/meye/meye.c index e5a76da86081..ae7d32027bf7 100644 --- a/drivers/media/pci/meye/meye.c +++ b/drivers/media/pci/meye/meye.c | |||
@@ -1945,7 +1945,7 @@ static struct pci_driver meye_driver = { | |||
1945 | static int __init meye_init(void) | 1945 | static int __init meye_init(void) |
1946 | { | 1946 | { |
1947 | gbuffers = max(2, min((int)gbuffers, MEYE_MAX_BUFNBRS)); | 1947 | gbuffers = max(2, min((int)gbuffers, MEYE_MAX_BUFNBRS)); |
1948 | if (gbufsize < 0 || gbufsize > MEYE_MAX_BUFSIZE) | 1948 | if (gbufsize > MEYE_MAX_BUFSIZE) |
1949 | gbufsize = MEYE_MAX_BUFSIZE; | 1949 | gbufsize = MEYE_MAX_BUFSIZE; |
1950 | gbufsize = PAGE_ALIGN(gbufsize); | 1950 | gbufsize = PAGE_ALIGN(gbufsize); |
1951 | printk(KERN_INFO "meye: using %d buffers with %dk (%dk total) " | 1951 | printk(KERN_INFO "meye: using %d buffers with %dk (%dk total) " |