diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-02-24 04:39:33 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-03-03 11:41:23 -0500 |
commit | fbf2c4a7b69dbc61e960a3c1455e661b57d15279 (patch) | |
tree | 58c4ca71d8aa23453fd0888d1bc043c083f64565 /drivers/mfd | |
parent | 2600abca149745deeb4cc9272bc3640a88815485 (diff) |
mfd: da9150: 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/da9150-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/da9150-core.c b/drivers/mfd/da9150-core.c index 4d757b97ef9a..5549817df32e 100644 --- a/drivers/mfd/da9150-core.c +++ b/drivers/mfd/da9150-core.c | |||
@@ -95,7 +95,7 @@ static const struct regmap_range_cfg da9150_range_cfg[] = { | |||
95 | }, | 95 | }, |
96 | }; | 96 | }; |
97 | 97 | ||
98 | static struct regmap_config da9150_regmap_config = { | 98 | static const struct regmap_config da9150_regmap_config = { |
99 | .reg_bits = 8, | 99 | .reg_bits = 8, |
100 | .val_bits = 8, | 100 | .val_bits = 8, |
101 | .ranges = da9150_range_cfg, | 101 | .ranges = da9150_range_cfg, |