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

Commit 925343ec authored by Jesper Juhl's avatar Jesper Juhl Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (6285): Remove pointless kmalloc() return value cast in Zoran PCI controller driver



No need to cast the void pointer returned by kmalloc() in
drivers/media/video/zoran_driver.c::v4l_fbuffer_alloc().

Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 409d84f8
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -339,10 +339,7 @@ v4l_fbuffer_alloc (struct file *file)
		if (fh->v4l_buffers.buffer_size <= MAX_KMALLOC_MEM) {
			/* Use kmalloc */

			mem =
			    (unsigned char *) kmalloc(fh->v4l_buffers.
						      buffer_size,
						      GFP_KERNEL);
			mem = kmalloc(fh->v4l_buffers.buffer_size, GFP_KERNEL);
			if (mem == 0) {
				dprintk(1,
					KERN_ERR