diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-01-05 04:01:22 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-01-22 10:56:12 -0500 |
commit | 172cb30177cbe7a0d0eb38c1f3d9534d63ce822f (patch) | |
tree | 03692566fb191b1575c5eae09fa94beecdb2ef77 /drivers/mfd | |
parent | 7f9e3feb7c0f71f5aa797f455abf0d503a520139 (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')
-rw-r--r-- | drivers/mfd/intel_soc_pmic_core.h | 2 | ||||
-rw-r--r-- | drivers/mfd/intel_soc_pmic_crc.c | 2 |
2 files changed, 2 insertions, 2 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 { | |||
23 | unsigned long irq_flags; | 23 | unsigned long irq_flags; |
24 | struct mfd_cell *cell_dev; | 24 | struct mfd_cell *cell_dev; |
25 | int n_cell_devs; | 25 | int n_cell_devs; |
26 | struct regmap_config *regmap_config; | 26 | const struct regmap_config *regmap_config; |
27 | struct regmap_irq_chip *irq_chip; | 27 | struct regmap_irq_chip *irq_chip; |
28 | }; | 28 | }; |
29 | 29 | ||
diff --git a/drivers/mfd/intel_soc_pmic_crc.c b/drivers/mfd/intel_soc_pmic_crc.c index c85e2ecb868a..4cc1b324e971 100644 --- a/drivers/mfd/intel_soc_pmic_crc.c +++ b/drivers/mfd/intel_soc_pmic_crc.c | |||
@@ -111,7 +111,7 @@ static struct mfd_cell crystal_cove_dev[] = { | |||
111 | }, | 111 | }, |
112 | }; | 112 | }; |
113 | 113 | ||
114 | static struct regmap_config crystal_cove_regmap_config = { | 114 | static const struct regmap_config crystal_cove_regmap_config = { |
115 | .reg_bits = 8, | 115 | .reg_bits = 8, |
116 | .val_bits = 8, | 116 | .val_bits = 8, |
117 | 117 | ||