aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-12-05 14:27:49 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-12-05 14:27:49 -0500
commit2f288efd2f9dd04e9a601364153d465fdd9a49bb (patch)
treef80da9df4079e98c0a83f511e353e98b36f82e53 /drivers/regulator
parent9a8f5e07200dd80fe5979490c36b62f64f70825b (diff)
parentd9a861cce10596ae1f10cffefe1ad4519a253475 (diff)
Merge branch 'topic/dt' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator into regulator-next
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/fixed.c2
-rw-r--r--drivers/regulator/of_regulator.c10
2 files changed, 8 insertions, 4 deletions
diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c
index 72abbf5507a6..a44a017c0864 100644
--- a/drivers/regulator/fixed.c
+++ b/drivers/regulator/fixed.c
@@ -64,7 +64,7 @@ of_get_fixed_voltage_config(struct device *dev)
64 if (!config) 64 if (!config)
65 return NULL; 65 return NULL;
66 66
67 config->init_data = of_get_regulator_init_data(dev); 67 config->init_data = of_get_regulator_init_data(dev, dev->of_node);
68 if (!config->init_data) 68 if (!config->init_data)
69 return NULL; 69 return NULL;
70 70
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index acd7045d1601..f1651eb69648 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -34,6 +34,9 @@ static void of_get_regulation_constraints(struct device_node *np,
34 /* Voltage change possible? */ 34 /* Voltage change possible? */
35 if (constraints->min_uV != constraints->max_uV) 35 if (constraints->min_uV != constraints->max_uV)
36 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE; 36 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE;
37 /* Only one voltage? Then make sure it's set. */
38 if (constraints->min_uV == constraints->max_uV)
39 constraints->apply_uV = true;
37 40
38 uV_offset = of_get_property(np, "regulator-microvolt-offset", NULL); 41 uV_offset = of_get_property(np, "regulator-microvolt-offset", NULL);
39 if (uV_offset) 42 if (uV_offset)
@@ -66,18 +69,19 @@ static void of_get_regulation_constraints(struct device_node *np,
66 * tree node, returns a pointer to the populated struture or NULL if memory 69 * tree node, returns a pointer to the populated struture or NULL if memory
67 * alloc fails. 70 * alloc fails.
68 */ 71 */
69struct regulator_init_data *of_get_regulator_init_data(struct device *dev) 72struct regulator_init_data *of_get_regulator_init_data(struct device *dev,
73 struct device_node *node)
70{ 74{
71 struct regulator_init_data *init_data; 75 struct regulator_init_data *init_data;
72 76
73 if (!dev->of_node) 77 if (!node)
74 return NULL; 78 return NULL;
75 79
76 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL); 80 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL);
77 if (!init_data) 81 if (!init_data)
78 return NULL; /* Out of memory? */ 82 return NULL; /* Out of memory? */
79 83
80 of_get_regulation_constraints(dev->of_node, &init_data); 84 of_get_regulation_constraints(node, &init_data);
81 return init_data; 85 return init_data;
82} 86}
83EXPORT_SYMBOL_GPL(of_get_regulator_init_data); 87EXPORT_SYMBOL_GPL(of_get_regulator_init_data);