summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRay Zhang <rayz@codeaurora.org>2017-05-17 14:34:23 +0800
committerRay Zhang <rayz@codeaurora.org>2017-05-31 17:57:54 +0800
commit05d7bcef3fc4a17722eb3d6a61eae0b5c8bcf846 (patch)
tree5305370a6eb02456038992d8115d13fda298dc70 /include
parent6cec3ff5ebf94071c991cc350fbb42fab028a306 (diff)
clk: mdss: fix bugs when parsing mdss regulators
There are two definitions of struct dss_vreg in mdss driver. One is used during parsing regulators from device tree file, the other is used when operating regulators. This introduces different understanding of dss_vreg data in these two places. Future plan is to have only one definition for these shared data structure. Currently only make dss_vreg in sync to fix this issue. CRs-Fixed: 2054371 Change-Id: I4f16e1409c832432fa1df73b0ae030176b664e58 Signed-off-by: Ray Zhang <rayz@codeaurora.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/sde_io_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sde_io_util.h b/include/linux/sde_io_util.h
index 6bd5c168ecd8..da4a50722984 100644
--- a/include/linux/sde_io_util.h
+++ b/include/linux/sde_io_util.h
@@ -58,6 +58,8 @@ struct dss_vreg {
int post_on_sleep;
int pre_off_sleep;
int post_off_sleep;
+ bool lp_disable_allowed;
+ bool disabled;
};
struct dss_gpio {