summaryrefslogtreecommitdiff
path: root/drivers/mfd/intel_soc_pmic_crc.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-01-05 09:01:22 (GMT)
committerLee Jones <lee.jones@linaro.org>2015-01-22 15:56:12 (GMT)
commit172cb30177cbe7a0d0eb38c1f3d9534d63ce822f (patch)
tree03692566fb191b1575c5eae09fa94beecdb2ef77 /drivers/mfd/intel_soc_pmic_crc.c
parent7f9e3feb7c0f71f5aa797f455abf0d503a520139 (diff)
downloadlinux-172cb30177cbe7a0d0eb38c1f3d9534d63ce822f.tar.xz
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_crc.c')
-rw-r--r--drivers/mfd/intel_soc_pmic_crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/intel_soc_pmic_crc.c b/drivers/mfd/intel_soc_pmic_crc.c
index c85e2ec..4cc1b32 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[] = {
},
};
-static struct regmap_config crystal_cove_regmap_config = {
+static const struct regmap_config crystal_cove_regmap_config = {
.reg_bits = 8,
.val_bits = 8,