diff options
author | Qipeng Zha | 2015-09-15 00:39:18 +0800 |
---|---|---|
committer | Lee Jones | 2015-10-30 17:18:03 +0000 |
commit | 6bb3b3acc3d096b938887c90f4bb19a639b99852 (patch) | |
tree | 885375a6cdfbca08eabf610ea4dd318467865aac /include | |
parent | 4a322296680e560a8ff7eb05c1e58a8cf8497344 (diff) |
mfd: intel_soc_pmic: Add support for Broxton WC PMIC
IRQ control registers of Intel Broxton Whisky Cove PMIC are
separated in two parts, so add secondary IRQ chip.
And the new member of device will be used in PMC IPC regmap APIs.
Signed-off-by: Qipeng Zha <qipeng.zha@intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/intel_soc_pmic.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mfd/intel_soc_pmic.h b/include/linux/mfd/intel_soc_pmic.h index abcbfcf32d10..cf619dbeace2 100644 --- a/include/linux/mfd/intel_soc_pmic.h +++ b/include/linux/mfd/intel_soc_pmic.h @@ -25,6 +25,8 @@ struct intel_soc_pmic { int irq; struct regmap *regmap; struct regmap_irq_chip_data *irq_chip_data; + struct regmap_irq_chip_data *irq_chip_data_level2; + struct device *dev; }; #endif /* __INTEL_SOC_PMIC_H__ */ |