From: Emil Velikov Date: Thu, 9 Aug 2018 14:05:58 +0000 (+0100) Subject: egl/drm: use gbm_dri_device() wrapper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7eb4a28d41c44d4457a40416305763faaf30ac3c;p=mesa.git egl/drm: use gbm_dri_device() wrapper Remove the explicit cast, using the appropriate wrapper instead. Signed-off-by: Emil Velikov Reviewed-by: Eric Engestrom Acked-by: Daniel Stone --- diff --git a/src/egl/drivers/dri2/platform_drm.c b/src/egl/drivers/dri2/platform_drm.c index 35bc4b5b1ac..d42ef6b2f95 100644 --- a/src/egl/drivers/dri2/platform_drm.c +++ b/src/egl/drivers/dri2/platform_drm.c @@ -45,7 +45,7 @@ lock_front_buffer(struct gbm_surface *_surf) { struct gbm_dri_surface *surf = (struct gbm_dri_surface *) _surf; struct dri2_egl_surface *dri2_surf = surf->dri_private; - struct gbm_dri_device *device = (struct gbm_dri_device *) _surf->gbm; + struct gbm_dri_device *device = gbm_dri_device(_surf->gbm); struct gbm_bo *bo; if (dri2_surf->current == NULL) {