Skip to content

Commit

Permalink
regulator: core: Add helper to put of_nodes from matches
Browse files Browse the repository at this point in the history
As of_regulator_match will take an of_node reference to each matched
regulator, it makes sense to provide a helper to put all those
references. This patch does that.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Charles Keepax authored and Mark Brown committed Apr 14, 2014
1 parent bd0dda7 commit 3764806
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drivers/regulator/of_regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,24 @@ int of_regulator_match(struct device *dev, struct device_node *node,
return count;
}
EXPORT_SYMBOL_GPL(of_regulator_match);

/**
* of_regulator_put_match - put the of_node references from an
* of_regulator_match structure
* @matches: match table for the regulators
* @num_matches: number of entries in match table
*
* This function goes through a match table and calls of_node_put on each
* of_node.
*/
int of_regulator_put_match(struct of_regulator_match *matches,
unsigned int num_matches)
{
int i;

for (i = 0; i < num_matches; i++)
of_node_put(matches[i].of_node);

return 0;
}
EXPORT_SYMBOL_GPL(of_regulator_put_match);
7 changes: 7 additions & 0 deletions include/linux/regulator/of_regulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ extern struct regulator_init_data
extern int of_regulator_match(struct device *dev, struct device_node *node,
struct of_regulator_match *matches,
unsigned int num_matches);
extern int of_regulator_put_match(struct of_regulator_match *matches,
unsigned int num_matches);
#else
static inline struct regulator_init_data
*of_get_regulator_init_data(struct device *dev,
Expand All @@ -35,6 +37,11 @@ static inline int of_regulator_match(struct device *dev,
{
return 0;
}
static inline int of_regulator_put_match(struct of_regulator_match *matches,
unsigned int num_matches);
{
return 0;
}
#endif /* CONFIG_OF */

#endif /* __LINUX_OF_REG_H */

0 comments on commit 3764806

Please sign in to comment.