]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
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 4d757b97ef9a076fd4e433dff135c69b6adefe05..5549817df32e7954776a8e2334d44196bd785e6e 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,