diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-01-05 04:01:33 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-01-22 11:03:50 -0500 |
commit | de1e23f83441d1f44f12e56b1e972b728a821f32 (patch) | |
tree | 94a92b4ebeb4d3375f6a78bf54bfb5dd6317c583 /drivers/mfd/twl6040.c | |
parent | d842b61ba9e63b77830f24f1bfdcc102f5628167 (diff) |
mfd: twl6040: Constify struct regmap_config and reg_default array
The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const. Make array of
struct reg_default const as well.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/twl6040.c')
-rw-r--r-- | drivers/mfd/twl6040.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/twl6040.c b/drivers/mfd/twl6040.c index 9687645162ae..f71ee3dbc2a2 100644 --- a/drivers/mfd/twl6040.c +++ b/drivers/mfd/twl6040.c | |||
@@ -44,7 +44,7 @@ | |||
44 | #define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1) | 44 | #define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1) |
45 | #define TWL6040_NUM_SUPPLIES (2) | 45 | #define TWL6040_NUM_SUPPLIES (2) |
46 | 46 | ||
47 | static struct reg_default twl6040_defaults[] = { | 47 | static const struct reg_default twl6040_defaults[] = { |
48 | { 0x01, 0x4B }, /* REG_ASICID (ro) */ | 48 | { 0x01, 0x4B }, /* REG_ASICID (ro) */ |
49 | { 0x02, 0x00 }, /* REG_ASICREV (ro) */ | 49 | { 0x02, 0x00 }, /* REG_ASICREV (ro) */ |
50 | { 0x03, 0x00 }, /* REG_INTID */ | 50 | { 0x03, 0x00 }, /* REG_INTID */ |
@@ -580,7 +580,7 @@ static bool twl6040_writeable_reg(struct device *dev, unsigned int reg) | |||
580 | } | 580 | } |
581 | } | 581 | } |
582 | 582 | ||
583 | static struct regmap_config twl6040_regmap_config = { | 583 | static const struct regmap_config twl6040_regmap_config = { |
584 | .reg_bits = 8, | 584 | .reg_bits = 8, |
585 | .val_bits = 8, | 585 | .val_bits = 8, |
586 | 586 | ||