diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/omap2/displays/panel-n8x0.c | 1 | ||||
-rw-r--r-- | drivers/video/omap2/displays/panel-taal.c | 2 | ||||
-rw-r--r-- | drivers/video/omap2/dss/dsi.c | 5 | ||||
-rw-r--r-- | drivers/video/omap2/dss/rfbi.c | 1 |
4 files changed, 3 insertions, 6 deletions
diff --git a/drivers/video/omap2/displays/panel-n8x0.c b/drivers/video/omap2/displays/panel-n8x0.c index 17ae85e0033f..3fc5ad081a21 100644 --- a/drivers/video/omap2/displays/panel-n8x0.c +++ b/drivers/video/omap2/displays/panel-n8x0.c | |||
@@ -489,6 +489,7 @@ static int n8x0_panel_probe(struct omap_dss_device *dssdev) | |||
489 | dssdev->panel.timings.y_res = 480; | 489 | dssdev->panel.timings.y_res = 480; |
490 | dssdev->ctrl.pixel_size = 16; | 490 | dssdev->ctrl.pixel_size = 16; |
491 | dssdev->ctrl.rfbi_timings = n8x0_panel_timings; | 491 | dssdev->ctrl.rfbi_timings = n8x0_panel_timings; |
492 | dssdev->caps = OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE; | ||
492 | 493 | ||
493 | memset(&props, 0, sizeof(props)); | 494 | memset(&props, 0, sizeof(props)); |
494 | props.max_brightness = 127; | 495 | props.max_brightness = 127; |
diff --git a/drivers/video/omap2/displays/panel-taal.c b/drivers/video/omap2/displays/panel-taal.c index ddda96a52d06..7b2d7bb79e68 100644 --- a/drivers/video/omap2/displays/panel-taal.c +++ b/drivers/video/omap2/displays/panel-taal.c | |||
@@ -884,6 +884,8 @@ static int taal_probe(struct omap_dss_device *dssdev) | |||
884 | 884 | ||
885 | dssdev->panel.timings = panel_config->timings; | 885 | dssdev->panel.timings = panel_config->timings; |
886 | dssdev->panel.dsi_pix_fmt = OMAP_DSS_DSI_FMT_RGB888; | 886 | dssdev->panel.dsi_pix_fmt = OMAP_DSS_DSI_FMT_RGB888; |
887 | dssdev->caps = OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE | | ||
888 | OMAP_DSS_DISPLAY_CAP_TEAR_ELIM; | ||
887 | 889 | ||
888 | td = kzalloc(sizeof(*td), GFP_KERNEL); | 890 | td = kzalloc(sizeof(*td), GFP_KERNEL); |
889 | if (!td) { | 891 | if (!td) { |
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index 340c832d21d8..254666fd3958 100644 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c | |||
@@ -4866,11 +4866,6 @@ static int __init dsi_init_display(struct omap_dss_device *dssdev) | |||
4866 | 4866 | ||
4867 | DSSDBG("DSI init\n"); | 4867 | DSSDBG("DSI init\n"); |
4868 | 4868 | ||
4869 | if (dsi->mode == OMAP_DSS_DSI_CMD_MODE) { | ||
4870 | dssdev->caps = OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE | | ||
4871 | OMAP_DSS_DISPLAY_CAP_TEAR_ELIM; | ||
4872 | } | ||
4873 | |||
4874 | if (dsi->vdds_dsi_reg == NULL) { | 4869 | if (dsi->vdds_dsi_reg == NULL) { |
4875 | struct regulator *vdds_dsi; | 4870 | struct regulator *vdds_dsi; |
4876 | 4871 | ||
diff --git a/drivers/video/omap2/dss/rfbi.c b/drivers/video/omap2/dss/rfbi.c index 5a9c0e9d8710..2e520d3085c8 100644 --- a/drivers/video/omap2/dss/rfbi.c +++ b/drivers/video/omap2/dss/rfbi.c | |||
@@ -939,7 +939,6 @@ EXPORT_SYMBOL(omapdss_rfbi_display_disable); | |||
939 | static int __init rfbi_init_display(struct omap_dss_device *dssdev) | 939 | static int __init rfbi_init_display(struct omap_dss_device *dssdev) |
940 | { | 940 | { |
941 | rfbi.dssdev[dssdev->phy.rfbi.channel] = dssdev; | 941 | rfbi.dssdev[dssdev->phy.rfbi.channel] = dssdev; |
942 | dssdev->caps = OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE; | ||
943 | return 0; | 942 | return 0; |
944 | } | 943 | } |
945 | 944 | ||