1
0
Fork 0

regulator: max8973: Fix up control flag option for bias control

The control flag for the bias control is MAX8973_CONTROL_BIAS_ENABLE
rather than MAX8973_BIAS_ENABLE which is macro for the bits in
register.

Fix this typo.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
hifive-unleashed-5.1
Laxman Dewangan 2015-07-01 18:31:42 +05:30 committed by Mark Brown
parent d770e558e2
commit 127e106242
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ static struct max8973_regulator_platform_data *max8973_parse_dt(
pdata->control_flags |= MAX8973_CONTROL_FREQ_SHIFT_9PER_ENABLE;
if (of_property_read_bool(np, "maxim,enable-bias-control"))
pdata->control_flags |= MAX8973_BIAS_ENABLE;
pdata->control_flags |= MAX8973_CONTROL_BIAS_ENABLE;
return pdata;
}