diff options
author | Todd Fischer <todd.fischer@ridgerun.com> | 2010-04-05 20:23:57 -0600 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-05-28 01:37:37 +0200 |
commit | 0bc20bba357f18a0e52f45afc452d0b69cf06f76 (patch) | |
tree | 38a1c5edfd04aa04a37afc404d4779244b740c09 /include | |
parent | d183fcc975cbbc9c427deb2d7948ab03673995c9 (diff) | |
download | linux-3.10-0bc20bba357f18a0e52f45afc452d0b69cf06f76.tar.gz linux-3.10-0bc20bba357f18a0e52f45afc452d0b69cf06f76.tar.bz2 linux-3.10-0bc20bba357f18a0e52f45afc452d0b69cf06f76.zip |
mfd: Add tps6507x board data structure
Add mfd structure which refrences sub-driver initialization data. For example,
for a giving hardware implementation, the voltage regulator sub-driver
initialization data provides the mapping betten a voltage regulator and what
the output voltage is being used for.
Signed-off-by: Todd Fischer <todd.fischer@ridgerun.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/tps6507x.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/mfd/tps6507x.h b/include/linux/mfd/tps6507x.h index 155bee1f782..fd73af5fb95 100644 --- a/include/linux/mfd/tps6507x.h +++ b/include/linux/mfd/tps6507x.h @@ -131,4 +131,15 @@ /* VDCDC MASK */ #define TPS6507X_DEFDCDCX_DCDC_MASK 0X3F +/** + * struct tps6507x_board - packages regulator and touchscreen init data + * @tps6507x_regulator_data: regulator initialization values + * + * Board data may be used to initialize regulator and touchscreen. + */ + +struct tps6507x_board { + struct regulator_init_data *tps6507x_pmic_init_data; +}; + #endif /* __LINUX_MFD_TPS6507X_H */ |