ecore-drm: Remove debug noise
authorChris Michael <cp.michael@samsung.com>
Mon, 4 May 2015 15:41:25 +0000 (11:41 -0400)
committerChris Michael <cp.michael@samsung.com>
Mon, 4 May 2015 15:41:25 +0000 (11:41 -0400)
Summary: No real function changes, just commented out some debug lines
so we have less noise for release

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_drm/ecore_drm_device.c

index 9919486cc6209f4ed3371938a52215c3edf53ce8..2646483436f4e7c59c1aced5d92f474a6d1eb009 100644 (file)
@@ -17,7 +17,7 @@ _ecore_drm_device_cb_page_flip(int fd EINA_UNUSED, unsigned int frame EINA_UNUSE
 {
    Ecore_Drm_Pageflip_Callback *cb;
 
-   DBG("Drm Page Flip Event");
+   /* DBG("Drm Page Flip Event"); */
 
    if (!(cb = data)) return;
 
@@ -58,7 +58,7 @@ _ecore_drm_device_cb_vblank(int fd EINA_UNUSED, unsigned int frame EINA_UNUSED,
    Ecore_Drm_Sprite *sprite;
    Ecore_Drm_Output *output;
 
-   DBG("Drm VBlank Event");
+   /* DBG("Drm VBlank Event"); */
 
    if (!(sprite = data)) return;
 
@@ -79,7 +79,7 @@ _ecore_drm_device_cb_event(void *data, Ecore_Fd_Handler *hdlr EINA_UNUSED)
 
    if (!(dev = data)) return ECORE_CALLBACK_RENEW;
 
-   DBG("Drm Device Event");
+   /* DBG("Drm Device Event"); */
 
    drmHandleEvent(dev->drm.fd, &dev->drm_ctx);