summaryrefslogtreecommitdiff
path: root/drivers/mfd/intel_soc_pmic_core.h
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-01-05 10:01:22 +0100
committerLee Jones <lee.jones@linaro.org>2015-01-22 15:56:12 +0000
commit172cb30177cbe7a0d0eb38c1f3d9534d63ce822f (patch)
tree03692566fb191b1575c5eae09fa94beecdb2ef77 /drivers/mfd/intel_soc_pmic_core.h
parent7f9e3feb7c0f71f5aa797f455abf0d503a520139 (diff)
mfd: intel_soc_pmic: Constify struct regmap_config
The regmap_config struct may be const because it is not modified by the driver and regmap_init() accepts pointer to const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/intel_soc_pmic_core.h')
-rw-r--r--drivers/mfd/intel_soc_pmic_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/intel_soc_pmic_core.h b/drivers/mfd/intel_soc_pmic_core.h
index 33aacd9baddc..9498d6719847 100644
--- a/drivers/mfd/intel_soc_pmic_core.h
+++ b/drivers/mfd/intel_soc_pmic_core.h
@@ -23,7 +23,7 @@ struct intel_soc_pmic_config {
unsigned long irq_flags;
struct mfd_cell *cell_dev;
int n_cell_devs;
- struct regmap_config *regmap_config;
+ const struct regmap_config *regmap_config;
struct regmap_irq_chip *irq_chip;
};