aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/pcf50633-core.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-01-05 10:01:27 +0100
committerLee Jones <lee.jones@linaro.org>2015-01-22 15:56:21 +0000
commit1590d4a1788d6b569b90f27c4b68ab081d6fb9ea (patch)
tree469791150fadf53761a5cced8cfacb8f413f2dfc /drivers/mfd/pcf50633-core.c
parentmfd: retu: Constify struct regmap_config (diff)
downloadlinux-dev-1590d4a1788d6b569b90f27c4b68ab081d6fb9ea.tar.xz
linux-dev-1590d4a1788d6b569b90f27c4b68ab081d6fb9ea.zip
mfd: pcf50633: 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/pcf50633-core.c')
-rw-r--r--drivers/mfd/pcf50633-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/pcf50633-core.c b/drivers/mfd/pcf50633-core.c
index 43664eb69c93..6155d123a84e 100644
--- a/drivers/mfd/pcf50633-core.c
+++ b/drivers/mfd/pcf50633-core.c
@@ -183,7 +183,7 @@ static int pcf50633_resume(struct device *dev)
static SIMPLE_DEV_PM_OPS(pcf50633_pm, pcf50633_suspend, pcf50633_resume);
-static struct regmap_config pcf50633_regmap_config = {
+static const struct regmap_config pcf50633_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
};