aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/gpio-regulator.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c
index cdb9d947d914..49fe20f58d2a 100644
--- a/drivers/regulator/gpio-regulator.c
+++ b/drivers/regulator/gpio-regulator.c
@@ -210,6 +210,9 @@ of_get_gpio_regulator_config(struct device *dev, struct device_node *np)
210 config->type = REGULATOR_VOLTAGE; 210 config->type = REGULATOR_VOLTAGE;
211 else if (!strncmp("current", regtype, 7)) 211 else if (!strncmp("current", regtype, 7))
212 config->type = REGULATOR_CURRENT; 212 config->type = REGULATOR_CURRENT;
213 else
214 dev_warn(dev, "Unknown regulator-type '%s'\n",
215 regtype);
213 } 216 }
214 217
215 return config; 218 return config;