]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
platform/x86: alienware-wmi: constify attribute_group structures.
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Tue, 11 Jul 2017 10:48:17 +0000 (16:18 +0530)
committerDarren Hart (VMware) <dvhart@infradead.org>
Tue, 11 Jul 2017 16:22:52 +0000 (09:22 -0700)
commit4b7942d8d1ced3c82495953cb0bb90e7de6dbba6
tree6ed297f3a58a2ea1a802f17034a98bb25fdefded
parent8546268e1177bd84157c7dc5bad82a2433fb5fea
platform/x86: alienware-wmi: 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
   6932    1016      48    7996    1f3c drivers/platform/x86/alienware-wmi.o

File size After adding 'const':
   text    data     bss     dec     hex filename
   7060     888      48    7996    1f64 drivers/platform/x86/alienware-wmi.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
drivers/platform/x86/alienware-wmi.c