From: Axel Lin Date: Wed, 2 Jul 2014 00:42:18 +0000 (+0800) Subject: hwmon: Make regmap configs const X-Git-Tag: v4.9.8~5969^2~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=034b44b4a22371c5bcbfb602a5420f3b75939dd8;p=platform%2Fkernel%2Flinux-rpi3.git hwmon: Make regmap configs const Signed-off-by: Axel Lin Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/emc1403.c b/drivers/hwmon/emc1403.c index a37b220..1ea7ca5 100644 --- a/drivers/hwmon/emc1403.c +++ b/drivers/hwmon/emc1403.c @@ -416,7 +416,7 @@ static bool emc1403_regmap_is_volatile(struct device *dev, unsigned int reg) } } -static struct regmap_config emc1403_regmap_config = { +static const struct regmap_config emc1403_regmap_config = { .reg_bits = 8, .val_bits = 8, .cache_type = REGCACHE_RBTREE, diff --git a/drivers/hwmon/ltc2945.c b/drivers/hwmon/ltc2945.c index 3701b32..1b92e4f 100644 --- a/drivers/hwmon/ltc2945.c +++ b/drivers/hwmon/ltc2945.c @@ -469,7 +469,7 @@ static struct attribute *ltc2945_attrs[] = { }; ATTRIBUTE_GROUPS(ltc2945); -static struct regmap_config ltc2945_regmap_config = { +static const struct regmap_config ltc2945_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = LTC2945_MIN_ADIN_THRES_L, diff --git a/drivers/hwmon/ltc4222.c b/drivers/hwmon/ltc4222.c index 07c2565..88f7472 100644 --- a/drivers/hwmon/ltc4222.c +++ b/drivers/hwmon/ltc4222.c @@ -186,7 +186,7 @@ static struct attribute *ltc4222_attrs[] = { }; ATTRIBUTE_GROUPS(ltc4222); -static struct regmap_config ltc4222_regmap_config = { +static const struct regmap_config ltc4222_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = LTC4222_ADC_CONTROL, diff --git a/drivers/hwmon/ltc4260.c b/drivers/hwmon/ltc4260.c index 453a250..afb09574 100644 --- a/drivers/hwmon/ltc4260.c +++ b/drivers/hwmon/ltc4260.c @@ -150,7 +150,7 @@ static struct attribute *ltc4260_attrs[] = { }; ATTRIBUTE_GROUPS(ltc4260); -static struct regmap_config ltc4260_regmap_config = { +static const struct regmap_config ltc4260_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = LTC4260_ADIN, diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c index c9f99e0..c74d2da 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,