diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-01-19 13:37:03 +0000 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-03-31 09:56:21 +0100 |
commit | 93c62da23a717f59933ec799688da42f71d8c6c4 (patch) | |
tree | 7bc6329c6e01bff6a9573b661c3f2378750c3df5 /include/linux/regulator | |
parent | 0527100fd11d9710c7e153d791da78824b7b46fa (diff) | |
download | linux-93c62da23a717f59933ec799688da42f71d8c6c4.tar.gz linux-93c62da23a717f59933ec799688da42f71d8c6c4.tar.bz2 linux-93c62da23a717f59933ec799688da42f71d8c6c4.zip |
regulator: Allow init data to be supplied for bq24022
Previously it was not possible to do so, making it impossible for
machines to configure the driver.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'include/linux/regulator')
-rw-r--r-- | include/linux/regulator/bq24022.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/regulator/bq24022.h b/include/linux/regulator/bq24022.h index e84b0a9feda5..a6d014005d49 100644 --- a/include/linux/regulator/bq24022.h +++ b/include/linux/regulator/bq24022.h @@ -10,6 +10,8 @@ * */ +struct regulator_init_data; + /** * bq24022_mach_info - platform data for bq24022 * @gpio_nce: GPIO line connected to the nCE pin, used to enable / disable charging @@ -18,4 +20,5 @@ struct bq24022_mach_info { int gpio_nce; int gpio_iset2; + struct regulator_init_data *init_data; }; |