In commit 21cf891a (regulator: Make regulator_has_full_constraints a bool) type of variable has_full_constraints is changed to bool, so assign 'true' to has_full_constraints here.
Signed-off-by: Baoquan He <[email protected]> --- drivers/regulator/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index ec8184d5..a4f28b5 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -4193,7 +4193,7 @@ EXPORT_SYMBOL_GPL(regulator_suspend_finish); */ void regulator_has_full_constraints(void) { - has_full_constraints = 1; + has_full_constraints = true; } EXPORT_SYMBOL_GPL(regulator_has_full_constraints); -- 2.5.5

