diff options
| author | Naseer Ahmed <naseer@codeaurora.org> | 2016-01-28 17:42:24 -0500 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 21:17:49 -0700 |
| commit | 4af0f22f2cc874d02da40d4957fcb15aa7fe5fff (patch) | |
| tree | 78c86ea294b256aa614a1126d315c2cb942126d8 /drivers/video/fbdev | |
| parent | 7dc5ab26693e259a737825904a425a004f5112e6 (diff) | |
msm: mdss: add support to send dcs cmds by left port only in video mode
In the current implementation, the existing feature flag to send DCS
commands only by the left controller is parsed only for command mode
panels. Extend this support to include video mode panels as well.
Change-Id: I32c5d96b514a8c4cb90fd320d589fe4252e92133
Signed-off-by: Naseer Ahmed <naseer@codeaurora.org>
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_dsi_panel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/fbdev/msm/mdss_dsi_panel.c b/drivers/video/fbdev/msm/mdss_dsi_panel.c index 5ba2b4729d64..11e95af87c19 100644 --- a/drivers/video/fbdev/msm/mdss_dsi_panel.c +++ b/drivers/video/fbdev/msm/mdss_dsi_panel.c @@ -1675,11 +1675,11 @@ static int mdss_dsi_parse_panel_features(struct device_node *np, of_property_read_bool(np, "qcom,partial-update-roi-merge"); } - - pinfo->dcs_cmd_by_left = of_property_read_bool(np, - "qcom,dcs-cmd-by-left"); } + pinfo->dcs_cmd_by_left = of_property_read_bool(np, + "qcom,dcs-cmd-by-left"); + pinfo->ulps_feature_enabled = of_property_read_bool(np, "qcom,ulps-enabled"); pr_info("%s: ulps feature %s\n", __func__, |
