From 61959106988072835b6a498edfa7c36f316d326c Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 20 Apr 2015 12:14:27 -0400 Subject: [PATCH] Revert "ecore-drm: Remove 'defined but not used' function" This reverts commit d625167e0707cca3648e9933ef65936043372447. Reverting this to use #if 0 as suggested by q66 --- src/lib/ecore_drm/ecore_drm_device.c | 32 ++++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_device.c b/src/lib/ecore_drm/ecore_drm_device.c index abc3e5ab98..e6a5c00a79 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; */ +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 = data)) return ECORE_CALLBACK_CANCEL; -/* if (!dev->active) return ECORE_CALLBACK_RENEW; */ + 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); */ -/* } */ + 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; */ -/* } */ + 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)