mfd: da9150: Constify struct regmap_config
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Tue, 24 Feb 2015 09:39:33 +0000 (10:39 +0100)
committerLee Jones <lee.jones@linaro.org>
Tue, 3 Mar 2015 16:41:23 +0000 (16:41 +0000)
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>
drivers/mfd/da9150-core.c

index 4d757b9..5549817 100644 (file)
@@ -95,7 +95,7 @@ static const struct regmap_range_cfg da9150_range_cfg[] = {
        },
 };
 
-static struct regmap_config da9150_regmap_config = {
+static const struct regmap_config da9150_regmap_config = {
        .reg_bits = 8,
        .val_bits = 8,
        .ranges = da9150_range_cfg,