diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-12-10 02:17:47 -0700 |
|---|---|---|
| committer | Linux Build Service Account <lnxbuild@localhost> | 2016-12-10 02:17:47 -0700 |
| commit | 71d8813926a4ff4e1e797ec85871be0a1f6b874f (patch) | |
| tree | bb51352f5b7b717f4eae0bed612bfd1fce6cb302 /include/linux | |
| parent | 1cca0f68b68657adf40d8a2b98baad1e1ebaaec8 (diff) | |
| parent | 368fecd7df5b203a5ce684a0c77726a5690c1147 (diff) | |
Promotion of kernel.lnx.4.4-161210.
CRs Change ID Subject
--------------------------------------------------------------------------------------------------------------
1095287 I6625eb082d55456e0f71afa8fc6ebdba3f6024a5 msm: ipa: enable suspend pipe for ODU
1094553 Ie3e7929def7b4e77edc33297f8c30a0bcd07bcce ARM: dts: msm: Update GPUCC clock frequencies for MSMtri
1097675 input: misc: add condition check for ddic reset
1097047 I15c9dc3ecf907723a136cbe90597ccafeba91af0 clk: Add vdd_class support for handoff and use_max_uV
1086187 I8d34eecd562ab50a8ec89f241406092d1b763a9a ARM: dts: msm: Add pinctrl device nodes for HiFi amplifi
1094553 I78e3b241390f9f5c7d8600d8ce933d9ffc9845fa clk: qcom: gpucc: Update gpu clock support for msmtriton
1097739 I15e248dd9bb3673c21d31acea69a1e892eff51b0 input: ft5x06_ts: fix uninitialized references in ft5x06
983521 Ib372d3272550973fd98992f28b3b9bf7e5eb7f0f leds: qpnp-wled: Fix the APIs to read/write WLED registe
1097247 If7cee7d36230225621ea74bca8ebb0e1077b94e6 Revert "wil6210: prevent XTAL off in device bootloader"
1084177 Ic6fce52fdf4d1420c2b707ec9bc9cba045066a13 msm: sensor: Validationg function pointers before using
1089405 I8071405a888cd2b23a068ca5b9c3a7808d13821a coresight: fix 32-bit compilation issues
1096980 I4c05fefa6906ecad408dfd4407b60bc051366f8c thermal-core: Use rcu for accessing sensor list
1086187 I3f2cadbb74b3a68d91938f20afff2ab0ab42b4bd ASoC: msm8998: Add support for HiFi amplifier
1060631 Iabc62e9e484717920bfec74a8799de3900a7215e msm: camera: Notify TZ App about changes of the HW secur
Change-Id: I8fe7e45890330aff4888b3ac1ee8e76e2b92b756
CRs-Fixed: 1097047, 1084177, 1097739, 1097675, 1094553, 1060631, 1097247, 983521, 1086187, 1089405, 1096980, 1095287
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/clk-provider.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index aed90a4902c7..5cd588fa9f6a 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -269,6 +269,8 @@ struct regulator; regulator * @level_votes: array of votes for each level * @num_levels: specifies the size of level_votes array + * @skip_handoff: do not vote for the max possible voltage during init + * @use_max_uV: use INT_MAX for max_uV when calling regulator_set_voltage * @cur_level: the currently set voltage level * @lock: lock to protect this struct */ @@ -280,6 +282,8 @@ struct clk_vdd_class { int *vdd_uv; int *level_votes; int num_levels; + bool skip_handoff; + bool use_max_uV; unsigned long cur_level; struct mutex lock; }; |
