diff options
author | Javier Martinez Canillas <javier.martinez@collabora.co.uk> | 2014-11-10 14:43:54 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-26 18:58:14 +0000 |
commit | 75d6b2faf79cbe9086e831351d5d9085f1852928 (patch) | |
tree | 15538806a5ea1a7e01e56fad62e73e97780a993b /include/linux/regulator/of_regulator.h | |
parent | 072e78b12bf5182a3e2e460388214a291023ef1c (diff) | |
download | blackbird-op-linux-75d6b2faf79cbe9086e831351d5d9085f1852928.tar.gz blackbird-op-linux-75d6b2faf79cbe9086e831351d5d9085f1852928.zip |
regulator: of: Pass the regulator description in the match table
Drivers can use the of_regulator_match() function to parse the regulator
init_data from DT. A match table is used to specify the name of the node
containing the regulators, the device node and to return the init_data
to the caller.
But also the static regulator descriptor is needed to correctly extract
some DT properties like the regulator initial and suspend modes. Use the
match table to pass that information.
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/regulator/of_regulator.h')
-rw-r--r-- | include/linux/regulator/of_regulator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/regulator/of_regulator.h b/include/linux/regulator/of_regulator.h index 8d1d136c0fb9..763953f7e3b8 100644 --- a/include/linux/regulator/of_regulator.h +++ b/include/linux/regulator/of_regulator.h @@ -13,6 +13,7 @@ struct of_regulator_match { void *driver_data; struct regulator_init_data *init_data; struct device_node *of_node; + const struct regulator_desc *desc; }; #if defined(CONFIG_OF) |