aboutsummaryrefslogtreecommitdiff
path: root/drivers/mfd/glamo
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-07-02 00:33:04 +0100
committerThomas White <taw@bitwiz.org.uk>2009-07-02 00:33:04 +0100
commit1cdde8b8d0c579a80fdce2c87efb5069e3c688d0 (patch)
tree166eedd8c541d8420a089caffa4e25ff10985b9e /drivers/mfd/glamo
parentc30b2dda89951504d3ac434848ac92d70376aec0 (diff)
Alter jbt6k74 state on DPMS
This uses the "stopgap" method implemented earlier. Signed-off-by: Thomas White <taw@bitwiz.org.uk>
Diffstat (limited to 'drivers/mfd/glamo')
-rw-r--r--drivers/mfd/glamo/glamo-display.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mfd/glamo/glamo-display.c b/drivers/mfd/glamo/glamo-display.c
index b79df84da68..706c6293903 100644
--- a/drivers/mfd/glamo/glamo-display.c
+++ b/drivers/mfd/glamo/glamo-display.c
@@ -271,7 +271,7 @@ static void glamo_crtc_dpms(struct drm_crtc *crtc, int mode)
switch (mode) {
case DRM_MODE_DPMS_OFF:
/* LCM need notification before pixel clock is stopped */
- //jbt6k74_action(0);
+ jbt6k74_action(0);
/* disable the pixel clock */
glamo_engine_clkreg_set(gdrm->glamo_core, GLAMO_ENGINE_LCD,
@@ -285,8 +285,7 @@ static void glamo_crtc_dpms(struct drm_crtc *crtc, int mode)
GLAMO_ENGINE_LCD,
GLAMO_CLOCK_LCD_EN_DCLK,
GLAMO_CLOCK_LCD_EN_DCLK);
-
- //jbt6k74_action(1);
+ jbt6k74_action(1);
glamo_crtc->blank_mode = mode;
break;
}