diff options
author | Danny Nold <dannynold@freescale.com> | 2011-11-03 13:05:36 -0500 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-01-09 21:06:15 +0800 |
commit | 2e5731626d19f95480ad0a368fbd68d2b3f3ebca (patch) | |
tree | 861e24c0ee5ae9bc9e08b2757d41513f02683472 /include | |
parent | da7e5127af69c075bce2047228a03d209c0022c2 (diff) |
ENGR00143921-1 - EPDC/MAX17135: Add controls for V3P3 regulator
- Added V3P3 regulator to max17135
- Added calls to enable/disable V3P3 regulator from EPDC driver
- Improved Kconfig detail for max17135 MFD and HWMON entries
Signed-off-by: Danny Nold <dannynold@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/max17135.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/max17135.h b/include/linux/mfd/max17135.h index 0a8af30853c1..265b1588c10a 100644 --- a/include/linux/mfd/max17135.h +++ b/include/linux/mfd/max17135.h @@ -154,6 +154,7 @@ struct max17135 { int gpio_pmic_pwrgood; int gpio_pmic_vcom_ctrl; int gpio_pmic_wakeup; + int gpio_pmic_v3p3; int gpio_pmic_intr; /* MAX17135 part variables */ @@ -181,6 +182,7 @@ enum { MAX17135_VCOM, MAX17135_VNEG, MAX17135_VPOS, + MAX17135_V3P3, MAX17135_NUM_REGULATORS, }; @@ -201,6 +203,7 @@ struct max17135_platform_data { int gpio_pmic_pwrgood; int gpio_pmic_vcom_ctrl; int gpio_pmic_wakeup; + int gpio_pmic_v3p3; int gpio_pmic_intr; int pass_num; int vcom_uV; |