diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-04-05 04:44:51 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-04-22 09:39:40 -0400 |
commit | e0c6a73fb191daad6d4ea808a89c6e22ac1b2733 (patch) | |
tree | d2d756135f8725d64ae6ccf2f958bfd83a0876b7 | |
parent | dcb1ee57780f2f772015ce9f80b2adc671257228 (diff) |
drm/bochs: Remove unecessary NULL check in gem_free
The ->gem_free_object never gets called with a NULL pointer, the check
is redundant. Also checking after the upcast allows compilers to elide
it anyway.
Noticed while chasing coverity reports, somehow this one here was not
flagged.
Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/bochs/bochs_mm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/bochs/bochs_mm.c b/drivers/gpu/drm/bochs/bochs_mm.c index 4a239e931aff..b9a695d92792 100644 --- a/drivers/gpu/drm/bochs/bochs_mm.c +++ b/drivers/gpu/drm/bochs/bochs_mm.c | |||
@@ -441,8 +441,6 @@ void bochs_gem_free_object(struct drm_gem_object *obj) | |||
441 | { | 441 | { |
442 | struct bochs_bo *bochs_bo = gem_to_bochs_bo(obj); | 442 | struct bochs_bo *bochs_bo = gem_to_bochs_bo(obj); |
443 | 443 | ||
444 | if (!bochs_bo) | ||
445 | return; | ||
446 | bochs_bo_unref(&bochs_bo); | 444 | bochs_bo_unref(&bochs_bo); |
447 | } | 445 | } |
448 | 446 | ||