diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-07-02 08:42:18 +0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2014-08-04 07:01:35 -0700 |
commit | 034b44b4a22371c5bcbfb602a5420f3b75939dd8 (patch) | |
tree | bdd4f9f3e3dee7ddb7cbd6bf8fd5a4cbdb6dc2d8 /drivers/hwmon/tmp103.c | |
parent | fa0efc4091e2299741a0391eeaadd36f335d942e (diff) |
hwmon: Make regmap configs const
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/tmp103.c')
-rw-r--r-- | drivers/hwmon/tmp103.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c index c9f99e0eb368..c74d2da389d9 100644 --- a/drivers/hwmon/tmp103.c +++ b/drivers/hwmon/tmp103.c @@ -116,7 +116,7 @@ static bool tmp103_regmap_is_volatile(struct device *dev, unsigned int reg) return reg == TMP103_TEMP_REG; } -static struct regmap_config tmp103_regmap_config = { +static const struct regmap_config tmp103_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = TMP103_THIGH_REG, |