Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon: (adt7475) constify attribute_group structures.

attribute_groups are not supposed to change at runtime. All functions
working with attribute_groups provided by <linux/sysfs.h> work with const
attribute_group. So mark the non-const structs as const.

File size before:
text data bss dec hex filename
10055 7032 0 17087 42bf drivers/hwmon/adt7475.o

File size After adding 'const':
text data bss dec hex filename
10567 6520 0 17087 42bf drivers/hwmon/adt7475.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Arvind Yadav and committed by
Guenter Roeck
f5397be8 33d62d11

+8 -8
+8 -8
drivers/hwmon/adt7475.c
··· 1319 1319 NULL 1320 1320 }; 1321 1321 1322 - static struct attribute_group adt7475_attr_group = { .attrs = adt7475_attrs }; 1323 - static struct attribute_group fan4_attr_group = { .attrs = fan4_attrs }; 1324 - static struct attribute_group pwm2_attr_group = { .attrs = pwm2_attrs }; 1325 - static struct attribute_group in0_attr_group = { .attrs = in0_attrs }; 1326 - static struct attribute_group in3_attr_group = { .attrs = in3_attrs }; 1327 - static struct attribute_group in4_attr_group = { .attrs = in4_attrs }; 1328 - static struct attribute_group in5_attr_group = { .attrs = in5_attrs }; 1329 - static struct attribute_group vid_attr_group = { .attrs = vid_attrs }; 1322 + static const struct attribute_group adt7475_attr_group = { .attrs = adt7475_attrs }; 1323 + static const struct attribute_group fan4_attr_group = { .attrs = fan4_attrs }; 1324 + static const struct attribute_group pwm2_attr_group = { .attrs = pwm2_attrs }; 1325 + static const struct attribute_group in0_attr_group = { .attrs = in0_attrs }; 1326 + static const struct attribute_group in3_attr_group = { .attrs = in3_attrs }; 1327 + static const struct attribute_group in4_attr_group = { .attrs = in4_attrs }; 1328 + static const struct attribute_group in5_attr_group = { .attrs = in5_attrs }; 1329 + static const struct attribute_group vid_attr_group = { .attrs = vid_attrs }; 1330 1330 1331 1331 static int adt7475_detect(struct i2c_client *client, 1332 1332 struct i2c_board_info *info)