Commit cbc5a185 authored by Kirill A. Shutemov's avatar Kirill A. Shutemov Committed by Dave Airlie

gma500: mdfld_intel_display: drop unused variables

Signed-off-by: default avatarKirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent c7a5ae2f
...@@ -380,7 +380,6 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode) ...@@ -380,7 +380,6 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
u32 pipestat_reg = PIPEASTAT; u32 pipestat_reg = PIPEASTAT;
u32 pipeconf = dev_priv->pipeconf[pipe]; u32 pipeconf = dev_priv->pipeconf[pipe];
u32 temp; u32 temp;
bool enabled;
int timeout = 0; int timeout = 0;
dev_dbg(dev->dev, "mode = %d, pipe = %d\n", mode, pipe); dev_dbg(dev->dev, "mode = %d, pipe = %d\n", mode, pipe);
...@@ -566,7 +565,6 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode) ...@@ -566,7 +565,6 @@ static void mdfld_crtc_dpms(struct drm_crtc *crtc, int mode)
} }
break; break;
} }
enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
gma_power_end(dev); gma_power_end(dev);
} }
...@@ -787,7 +785,6 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc, ...@@ -787,7 +785,6 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
struct mrst_clock_t clock; struct mrst_clock_t clock;
bool ok; bool ok;
u32 dpll = 0, fp = 0; u32 dpll = 0, fp = 0;
bool is_crt = false, is_lvds = false, is_tv = false;
bool is_mipi = false, is_mipi2 = false, is_hdmi = false; bool is_mipi = false, is_mipi2 = false, is_hdmi = false;
struct drm_mode_config *mode_config = &dev->mode_config; struct drm_mode_config *mode_config = &dev->mode_config;
struct psb_intel_encoder *psb_intel_encoder = NULL; struct psb_intel_encoder *psb_intel_encoder = NULL;
...@@ -898,15 +895,6 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc, ...@@ -898,15 +895,6 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
psb_intel_encoder = psb_intel_attached_encoder(connector); psb_intel_encoder = psb_intel_attached_encoder(connector);
switch (psb_intel_encoder->type) { switch (psb_intel_encoder->type) {
case INTEL_OUTPUT_LVDS:
is_lvds = true;
break;
case INTEL_OUTPUT_TVOUT:
is_tv = true;
break;
case INTEL_OUTPUT_ANALOG:
is_crt = true;
break;
case INTEL_OUTPUT_MIPI: case INTEL_OUTPUT_MIPI:
is_mipi = true; is_mipi = true;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment