Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96f0596c authored by Taniya Das's avatar Taniya Das
Browse files

clk: provider: cleanup of unused use_max_uV



As clock framework now votes for INT_MAX default as maximum voltage, this
variable is no longer being used. Thus cleanup the same.

Change-Id: Iceaf32c90d9acae02f01c847a197d8dfbce99abd
Signed-off-by: default avatarTaniya Das <tdas@codeaurora.org>
parent 9d142570
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -313,7 +313,6 @@ struct 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
 */
@@ -326,7 +325,6 @@ struct clk_vdd_class {
	int *level_votes;
	int num_levels;
	bool skip_handoff;
	bool use_max_uV;
	unsigned long cur_level;
	struct mutex lock;
};