summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--omap/omap_drm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/omap/omap_drm.c b/omap/omap_drm.c
index ff83a930..4a0248d5 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,