diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-06-29 06:32:56 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-29 12:20:15 -0400 |
commit | 343fe850668cc38ba0524aa5880b041b2567ae5c (patch) | |
tree | 9bd45f78cac42d1f60eb26ea0d2ad531e322e1d1 /sound/core | |
parent | fcc6c877a01f83cbce1cca885ea62df6a10d33c3 (diff) |
ALSA: pcm: constify attribute_group structures.
attribute_groups are not supposed to change at runtime. All functions
working with attribute_groups provided by <linux/device.h> work with const
attribute_group. So mark the non-const structs as const.
File size before:
text data bss dec hex filename
9781 240 8 10029 272d sound/core/pcm.o
File size After adding 'const':
text data bss dec hex filename
9813 176 8 9997 270d sound/core/pcm.o
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm.c b/sound/core/pcm.c index 4b3290447398..89c7485519cb 100644 --- a/sound/core/pcm.c +++ b/sound/core/pcm.c | |||
@@ -1067,7 +1067,7 @@ static struct attribute *pcm_dev_attrs[] = { | |||
1067 | NULL | 1067 | NULL |
1068 | }; | 1068 | }; |
1069 | 1069 | ||
1070 | static struct attribute_group pcm_dev_attr_group = { | 1070 | static const struct attribute_group pcm_dev_attr_group = { |
1071 | .attrs = pcm_dev_attrs, | 1071 | .attrs = pcm_dev_attrs, |
1072 | }; | 1072 | }; |
1073 | 1073 | ||