On Tue, Jul 14, 2015 at 03:10:03PM +0100, Emil Velikov wrote: > Equivalent to the previous patch. > > Cc: Rob Clark <robdclark at gmail.com> > Cc: Thierry Reding <thierry.reding at gmail.com> > Suggested-by: Thierry Reding <thierry.reding at gmail.com> > Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com> > --- > omap/omap_drm.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Thierry Reding <treding at nvidia.com> > 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, > -- > 2.4.5 > -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150715/1aee025d/attachment.sig>