]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
PM / sleep: constify attribute_group structures
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Fri, 30 Jun 2017 04:52:14 +0000 (10:22 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 4 Jul 2017 20:01:16 +0000 (22:01 +0200)
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
   3802     624      32    4458    116a kernel/power/main.o

File size After adding 'const':
   text    data     bss     dec     hex filename
   3866     560      32    4458    116a kernel/power/main.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/power/main.c

index d401c21136d1c80b1996ce1c19c5b8f26bcf8adf..42bd800a6755be14cea9a296aa5c7db57bd7fdea 100644 (file)
@@ -705,7 +705,7 @@ static struct attribute * g[] = {
        NULL,
 };
 
-static struct attribute_group attr_group = {
+static const struct attribute_group attr_group = {
        .attrs = g,
 };