devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ebf6d95ed6de6f90481cc09a5d18f16251c01b76
commit ebf6d95ed6de6f90481cc09a5d18f16251c01b76 Author: Chris Michael <[email protected]> Date: Thu Nov 5 09:37:48 2015 -0500 ecore-drm: Remove unused function As we no longer have an fd handler to listen on the drm fd, we don't need this function anymore @fix Signed-off-by: Chris Michael <[email protected]> --- src/lib/ecore_drm/ecore_drm_device.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_device.c b/src/lib/ecore_drm/ecore_drm_device.c index 1285614..3e70d24 100644 --- a/src/lib/ecore_drm/ecore_drm_device.c +++ b/src/lib/ecore_drm/ecore_drm_device.c @@ -75,20 +75,6 @@ _ecore_drm_device_cb_vblank(int fd EINA_UNUSED, unsigned int frame EINA_UNUSED, if (!output->pending_flip) _ecore_drm_output_frame_finish(output); } -static Eina_Bool -_ecore_drm_device_cb_event(void *data, Ecore_Fd_Handler *hdlr EINA_UNUSED) -{ - Ecore_Drm_Device *dev; - - if (!(dev = data)) return ECORE_CALLBACK_RENEW; - - /* DBG("Drm Device Event"); */ - - drmHandleEvent(dev->drm.fd, &dev->drm_ctx); - - return ECORE_CALLBACK_RENEW; -} - #if 0 static Eina_Bool _ecore_drm_device_cb_idle(void *data) --
