drm/exynos: Remove tracking log functions
[deliverable/linux.git] / drivers / gpu / drm / exynos / exynos_drm_crtc.c
index a143605884a4eda92c529c6862d9bc1c187fa0cf..9a35d171a6d3c5d1b348304cc1ee35597662d340 100644 (file)
@@ -76,8 +76,6 @@ static void exynos_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
 
 static void exynos_drm_crtc_prepare(struct drm_crtc *crtc)
 {
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        /* drm framework doesn't check NULL. */
 }
 
@@ -85,8 +83,6 @@ static void exynos_drm_crtc_commit(struct drm_crtc *crtc)
 {
        struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
        exynos_plane_commit(exynos_crtc->plane);
        exynos_plane_dpms(exynos_crtc->plane, DRM_MODE_DPMS_ON);
@@ -97,8 +93,6 @@ exynos_drm_crtc_mode_fixup(struct drm_crtc *crtc,
                            const struct drm_display_mode *mode,
                            struct drm_display_mode *adjusted_mode)
 {
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        /* drm framework doesn't check NULL */
        return true;
 }
@@ -115,8 +109,6 @@ exynos_drm_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
        int pipe = exynos_crtc->pipe;
        int ret;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        /*
         * copy the mode data adjusted by mode_fixup() into crtc->mode
         * so that hardware can be seet to proper mode.
@@ -148,8 +140,6 @@ static int exynos_drm_crtc_mode_set_commit(struct drm_crtc *crtc, int x, int y,
        unsigned int crtc_h;
        int ret;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        /* when framebuffer changing is requested, crtc's dpms should be on */
        if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
                DRM_ERROR("failed framebuffer changing request.\n");
@@ -179,8 +169,6 @@ static void exynos_drm_crtc_disable(struct drm_crtc *crtc)
 {
        struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        exynos_plane_dpms(exynos_crtc->plane, DRM_MODE_DPMS_OFF);
        exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
 }
@@ -205,8 +193,6 @@ static int exynos_drm_crtc_page_flip(struct drm_crtc *crtc,
        struct drm_framebuffer *old_fb = crtc->fb;
        int ret = -EINVAL;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        /* when the page flip is requested, crtc's dpms should be on */
        if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
                DRM_ERROR("failed page flip request.\n");
@@ -259,8 +245,6 @@ static void exynos_drm_crtc_destroy(struct drm_crtc *crtc)
        struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
        struct exynos_drm_private *private = crtc->dev->dev_private;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        private->crtc[exynos_crtc->pipe] = NULL;
 
        drm_crtc_cleanup(crtc);
@@ -275,8 +259,6 @@ static int exynos_drm_crtc_set_property(struct drm_crtc *crtc,
        struct exynos_drm_private *dev_priv = dev->dev_private;
        struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
 
-       DRM_DEBUG_KMS("%s\n", __func__);
-
        if (property == dev_priv->crtc_mode_property) {
                enum exynos_crtc_mode mode = val;
 
@@ -321,8 +303,6 @@ static void exynos_drm_crtc_attach_mode_property(struct drm_crtc *crtc)
        struct exynos_drm_private *dev_priv = dev->dev_private;
        struct drm_property *prop;
 
-       DRM_DEBUG_KMS("%s\n", __func__);
-
        prop = dev_priv->crtc_mode_property;
        if (!prop) {
                prop = drm_property_create_enum(dev, 0, "mode", mode_names,
@@ -342,8 +322,6 @@ int exynos_drm_crtc_create(struct drm_device *dev, unsigned int nr)
        struct exynos_drm_private *private = dev->dev_private;
        struct drm_crtc *crtc;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        exynos_crtc = kzalloc(sizeof(*exynos_crtc), GFP_KERNEL);
        if (!exynos_crtc) {
                DRM_ERROR("failed to allocate exynos crtc\n");
@@ -378,8 +356,6 @@ int exynos_drm_crtc_enable_vblank(struct drm_device *dev, int crtc)
        struct exynos_drm_crtc *exynos_crtc =
                to_exynos_crtc(private->crtc[crtc]);
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
                return -EPERM;
 
@@ -395,8 +371,6 @@ void exynos_drm_crtc_disable_vblank(struct drm_device *dev, int crtc)
        struct exynos_drm_crtc *exynos_crtc =
                to_exynos_crtc(private->crtc[crtc]);
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
                return;
 
@@ -412,8 +386,6 @@ void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int crtc)
        struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(drm_crtc);
        unsigned long flags;
 
-       DRM_DEBUG_KMS("%s\n", __FILE__);
-
        spin_lock_irqsave(&dev->event_lock, flags);
 
        list_for_each_entry_safe(e, t, &dev_priv->pageflip_event_list,
This page took 0.025754 seconds and 5 git commands to generate.