Commit 5b1ada83 authored by Mark Brown's avatar Mark Brown

regulator: gpio: Don't require a regulator-type property

Since essentially all GPIO controlled regulators are voltage regulators
make the regulator-type property optional, defaulting to voltage.
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 251b9c21
...@@ -203,17 +203,15 @@ of_get_gpio_regulator_config(struct device *dev, struct device_node *np) ...@@ -203,17 +203,15 @@ of_get_gpio_regulator_config(struct device *dev, struct device_node *np)
} }
config->nr_states = i; config->nr_states = i;
config->type = REGULATOR_VOLTAGE;
ret = of_property_read_string(np, "regulator-type", &regtype); ret = of_property_read_string(np, "regulator-type", &regtype);
if (ret < 0) { if (ret >= 0) {
dev_err(dev, "Missing 'regulator-type' property\n"); if (!strncmp("voltage", regtype, 7))
return ERR_PTR(-EINVAL); config->type = REGULATOR_VOLTAGE;
else if (!strncmp("current", regtype, 7))
config->type = REGULATOR_CURRENT;
} }
if (!strncmp("voltage", regtype, 7))
config->type = REGULATOR_VOLTAGE;
else if (!strncmp("current", regtype, 7))
config->type = REGULATOR_CURRENT;
return config; return config;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment