]> git.baikalelectronics.ru Git - kernel.git/commit
drm: vc4: remove redundant check of plane being non-null
authorColin Ian King <colin.king@canonical.com>
Thu, 16 Mar 2017 18:54:18 +0000 (18:54 +0000)
committerEric Anholt <eric@anholt.net>
Fri, 17 Mar 2017 23:44:14 +0000 (16:44 -0700)
commitdc642cc0d3945791ae428c35f63e25fcf69783b0
treec5f6bb431a424aca2896dcf915f93cacc9d42ac2
parentb998d153ad294a454323f19c25ebaa33b85b9911
drm: vc4: remove redundant check of plane being non-null

The pointer plane is always null on the error path at label 'fail'
hence the check if it is non-null is redundant. We can therefore
remove the check and the destruction of plane as well as the fail
error path and instead just return an -ENOMEM ERR_PTR.

Detected by CoverityScan, CID#1339532 ("Logically Dead Code")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: http://patchwork.freedesktop.org/patch/msgid/20170316185418.32765-1-colin.king@canonical.com
drivers/gpu/drm/vc4/vc4_plane.c