From d625167e0707cca3648e9933ef65936043372447 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 20 Apr 2015 11:47:55 -0400 Subject: ecore-drm: Remove 'defined but not used' function Summary: As we no longer require the idler to repaint outputs, comment out the function that was defined for the idler. NB: I left it commented (and not totally removed) just in case it is needed for a later (undiscovered) issue @fix Signed-off-by: Chris Michael --- src/lib/ecore_drm/ecore_drm_device.c | 40 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'src/lib/ecore_drm/ecore_drm_device.c') diff --git a/src/lib/ecore_drm/ecore_drm_device.c b/src/lib/ecore_drm/ecore_drm_device.c index e6a5c00a79..abc3e5ab98 100644 --- a/src/lib/ecore_drm/ecore_drm_device.c +++ b/src/lib/ecore_drm/ecore_drm_device.c @@ -86,26 +86,26 @@ _ecore_drm_device_cb_event(void *data, Ecore_Fd_Handler *hdlr EINA_UNUSED) return ECORE_CALLBACK_RENEW; } -static Eina_Bool -_ecore_drm_device_cb_idle(void *data) -{ - Ecore_Drm_Device *dev; - Ecore_Drm_Output *output; - Eina_List *l; - - if (!(dev = data)) return ECORE_CALLBACK_CANCEL; - - if (!dev->active) return ECORE_CALLBACK_RENEW; - - EINA_LIST_FOREACH(dev->outputs, l, output) - { - if ((!output->enabled) || (!output->need_repaint)) continue; - if (output->repaint_scheduled) continue; - _ecore_drm_output_repaint_start(output); - } - - return ECORE_CALLBACK_RENEW; -} +/* static Eina_Bool */ +/* _ecore_drm_device_cb_idle(void *data) */ +/* { */ +/* Ecore_Drm_Device *dev; */ +/* Ecore_Drm_Output *output; */ +/* Eina_List *l; */ + +/* if (!(dev = data)) return ECORE_CALLBACK_CANCEL; */ + +/* if (!dev->active) return ECORE_CALLBACK_RENEW; */ + +/* EINA_LIST_FOREACH(dev->outputs, l, output) */ +/* { */ +/* if ((!output->enabled) || (!output->need_repaint)) continue; */ +/* if (output->repaint_scheduled) continue; */ +/* _ecore_drm_output_repaint_start(output); */ +/* } */ + +/* return ECORE_CALLBACK_RENEW; */ +/* } */ static void _ecore_drm_device_cb_output_event(const char *device EINA_UNUSED, Eeze_Udev_Event event EINA_UNUSED, void *data, Eeze_Udev_Watch *watch EINA_UNUSED) -- cgit v1.2.1