Equivalent to the previous patch.
Cc: Rob Clark robdclark@gmail.com Cc: Thierry Reding thierry.reding@gmail.com Suggested-by: Thierry Reding thierry.reding@gmail.com Signed-off-by: Emil Velikov emil.l.velikov@gmail.com --- omap/omap_drm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/omap/omap_drm.c b/omap/omap_drm.c index ff83a93..4a0248d 100644 --- a/omap/omap_drm.c +++ b/omap/omap_drm.c @@ -363,7 +363,7 @@ void omap_bo_del(struct omap_bo *bo) munmap(bo->map, bo->size); }
- if (bo->fd) { + if (bo->fd >= 0) { close(bo->fd); }
@@ -414,7 +414,7 @@ uint32_t omap_bo_handle(struct omap_bo *bo) */ int omap_bo_dmabuf(struct omap_bo *bo) { - if (!bo->fd) { + if (bo->fd < 0) { struct drm_prime_handle req = { .handle = bo->handle, .flags = DRM_CLOEXEC,