aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/displays
diff options
context:
space:
mode:
authorJani Nikula <ext-jani.1.nikula@nokia.com>2010-04-15 17:07:39 +0300
committerTomi Valkeinen <tomi.valkeinen@nokia.com>2010-08-03 15:18:49 +0300
commit1e8943dbae98f48fc485fb9a671e94972b234cb2 (patch)
tree0d59fff19fed17880bc034887922d287bf447e58 /drivers/video/omap2/displays
parentOMAP: DSS2: Taal: Add regulator configuration support (diff)
downloadlinux-dev-1e8943dbae98f48fc485fb9a671e94972b234cb2.tar.xz
linux-dev-1e8943dbae98f48fc485fb9a671e94972b234cb2.zip
OMAP: DSS2: Taal: CABC workaround is Taal specific
Prepare for supporting panels other than Taal in this driver. Signed-off-by: Jani Nikula <ext-jani.1.nikula@nokia.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video/omap2/displays')
-rw-r--r--drivers/video/omap2/displays/panel-taal.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/omap2/displays/panel-taal.c b/drivers/video/omap2/displays/panel-taal.c
index 941f1f208c9e..2a91d5662c07 100644
--- a/drivers/video/omap2/displays/panel-taal.c
+++ b/drivers/video/omap2/displays/panel-taal.c
@@ -856,8 +856,9 @@ static int taal_power_on(struct omap_dss_device *dssdev)
if (r)
goto err;
- /* on early revisions CABC is broken */
- if (id2 == 0x00 || id2 == 0xff || id2 == 0x81)
+ /* on early Taal revisions CABC is broken */
+ if (td->panel_config->type == PANEL_TAAL &&
+ (id2 == 0x00 || id2 == 0xff || id2 == 0x81))
td->cabc_broken = true;
r = taal_dcs_write_1(DCS_BRIGHTNESS, 0xff);