mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 16:19:53 +00:00
regulator: provide rdev_get_regmap()
Provide a helper allowing to access regulator's regmap. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
6f3656f355
commit
03c87b95ac
@ -5251,6 +5251,12 @@ struct device *rdev_get_dev(struct regulator_dev *rdev)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(rdev_get_dev);
|
||||
|
||||
struct regmap *rdev_get_regmap(struct regulator_dev *rdev)
|
||||
{
|
||||
return rdev->regmap;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(rdev_get_regmap);
|
||||
|
||||
void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
|
||||
{
|
||||
return reg_init_data->driver_data;
|
||||
|
@ -503,6 +503,7 @@ int regulator_notifier_call_chain(struct regulator_dev *rdev,
|
||||
|
||||
void *rdev_get_drvdata(struct regulator_dev *rdev);
|
||||
struct device *rdev_get_dev(struct regulator_dev *rdev);
|
||||
struct regmap *rdev_get_regmap(struct regulator_dev *rdev);
|
||||
int rdev_get_id(struct regulator_dev *rdev);
|
||||
|
||||
int regulator_mode_to_status(unsigned int);
|
||||
|
Loading…
x
Reference in New Issue
Block a user