leds: lm3533: constify attribute_group structure
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Thu, 10 Aug 2017 16:28:09 +0000 (12:28 -0400)
committerJacek Anaszewski <jacek.anaszewski@gmail.com>
Tue, 29 Aug 2017 19:10:37 +0000 (21:10 +0200)
Functions working with attribute_groups provided by <linux/device.h>
work with const attribute_group. These attribute_group structures do not
change at runtime so mark them as const.

File size before:
 text      data     bss     dec     hex filename
 8272      4608      64   12944    3290 drivers/leds/leds-lm3533.o

File size after:
 text      data     bss     dec     hex filename
 8368      4512      64   12944    3290 drivers/leds/leds-lm3533.o

This change was made with the help of Coccinelle.

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
drivers/leds/leds-lm3533.c

index 5b529dc013d293115c39641ec666a1fbd2935044..72224b599ffce55ba13b9418e27c9fd8362173f0 100644 (file)
@@ -626,7 +626,7 @@ static umode_t lm3533_led_attr_is_visible(struct kobject *kobj,
        return mode;
 };
 
-static struct attribute_group lm3533_led_attribute_group = {
+static const struct attribute_group lm3533_led_attribute_group = {
        .is_visible     = lm3533_led_attr_is_visible,
        .attrs          = lm3533_led_attributes
 };