mirror of https://gitee.com/openkylin/linux.git
V4L/DVB (6262): An allocation error message were being printed as a debug msg
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
c520a4970c
commit
e78dcf5552
|
@ -140,7 +140,6 @@ static int __videobuf_iolock (struct videobuf_queue* q,
|
||||||
|
|
||||||
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);
|
MAGIC_CHECK(mem->magic,MAGIC_VMAL_MEM);
|
||||||
|
|
||||||
|
|
||||||
pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
|
pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
|
||||||
|
|
||||||
/* Currently, doesn't support V4L2_MEMORY_OVERLAY */
|
/* Currently, doesn't support V4L2_MEMORY_OVERLAY */
|
||||||
|
@ -153,7 +152,7 @@ static int __videobuf_iolock (struct videobuf_queue* q,
|
||||||
/* FIXME: should be tested with kernel mmap mem */
|
/* FIXME: should be tested with kernel mmap mem */
|
||||||
mem->vmalloc=vmalloc_user (PAGE_ALIGN(vb->size));
|
mem->vmalloc=vmalloc_user (PAGE_ALIGN(vb->size));
|
||||||
if (NULL == mem->vmalloc) {
|
if (NULL == mem->vmalloc) {
|
||||||
dprintk(1,"vmalloc (%d pages) failed\n",pages);
|
printk(KERN_ERR "vmalloc (%d pages) failed\n",pages);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue