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

Commit 7c57529b authored by Markus Elfring's avatar Markus Elfring Committed by Mauro Carvalho Chehab
Browse files

[media] V4L2: Deletion of an unnecessary check before the function call "vb2_put_vma"



The vb2_put_vma() function tests whether its argument is NULL and then
returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Acked-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 8c17e5e3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -154,7 +154,6 @@ static void vb2_vmalloc_put_userptr(void *buf_priv)
		}
		kfree(buf->pages);
	} else {
		if (buf->vma)
		vb2_put_vma(buf->vma);
		iounmap(buf->vaddr);
	}