From 96f0596cc03a662028aebff0b2766ea13c54cfc7 Mon Sep 17 00:00:00 2001 From: Taniya Das Date: Mon, 20 May 2019 09:34:16 +0530 Subject: [PATCH] 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: Taniya Das --- include/linux/clk-provider.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 710361e4a2e5..be505ee57c50 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -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; };