diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-05 14:27:49 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-05 14:27:49 -0500 |
commit | 2f288efd2f9dd04e9a601364153d465fdd9a49bb (patch) | |
tree | f80da9df4079e98c0a83f511e353e98b36f82e53 | |
parent | 9a8f5e07200dd80fe5979490c36b62f64f70825b (diff) | |
parent | d9a861cce10596ae1f10cffefe1ad4519a253475 (diff) |
Merge branch 'topic/dt' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator into regulator-next
-rw-r--r-- | Documentation/power/regulator/regulator.txt | 2 | ||||
-rw-r--r-- | drivers/regulator/fixed.c | 2 | ||||
-rw-r--r-- | drivers/regulator/of_regulator.c | 10 | ||||
-rw-r--r-- | include/linux/regulator/of_regulator.h | 6 |
4 files changed, 13 insertions, 7 deletions
diff --git a/Documentation/power/regulator/regulator.txt b/Documentation/power/regulator/regulator.txt index 3f8b528f237e..e272d9909e39 100644 --- a/Documentation/power/regulator/regulator.txt +++ b/Documentation/power/regulator/regulator.txt | |||
@@ -12,7 +12,7 @@ Drivers can register a regulator by calling :- | |||
12 | 12 | ||
13 | struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc, | 13 | struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc, |
14 | struct device *dev, struct regulator_init_data *init_data, | 14 | struct device *dev, struct regulator_init_data *init_data, |
15 | void *driver_data); | 15 | void *driver_data, struct device_node *of_node); |
16 | 16 | ||
17 | This will register the regulators capabilities and operations to the regulator | 17 | This will register the regulators capabilities and operations to the regulator |
18 | core. | 18 | core. |
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 | */ |
69 | struct regulator_init_data *of_get_regulator_init_data(struct device *dev) | 72 | struct 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 | } |
83 | EXPORT_SYMBOL_GPL(of_get_regulator_init_data); | 87 | EXPORT_SYMBOL_GPL(of_get_regulator_init_data); |
diff --git a/include/linux/regulator/of_regulator.h b/include/linux/regulator/of_regulator.h index d83a98d3e3fd..769704f296e5 100644 --- a/include/linux/regulator/of_regulator.h +++ b/include/linux/regulator/of_regulator.h | |||
@@ -8,10 +8,12 @@ | |||
8 | 8 | ||
9 | #if defined(CONFIG_OF) | 9 | #if defined(CONFIG_OF) |
10 | extern struct regulator_init_data | 10 | extern struct regulator_init_data |
11 | *of_get_regulator_init_data(struct device *dev); | 11 | *of_get_regulator_init_data(struct device *dev, |
12 | struct device_node *node); | ||
12 | #else | 13 | #else |
13 | static inline struct regulator_init_data | 14 | static inline struct regulator_init_data |
14 | *of_get_regulator_init_data(struct device *dev) | 15 | *of_get_regulator_init_data(struct device *dev, |
16 | struct device_node *node) | ||
15 | { | 17 | { |
16 | return NULL; | 18 | return NULL; |
17 | } | 19 | } |