提交 89f00a1a 编写于 作者: A Arvind Yadav 提交者: Greg Kroah-Hartman

hwtracing: coresight: 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
   2573	    288	    296	   3157	    c55	coresight-etm-perf.o

File size After adding 'const':
   text	   data	    bss	    dec	    hex	filename
   2613	    224	    296	   3133	    c3d	coresight-etm-perf.o
Signed-off-by: NArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: NMathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 af36103e
...@@ -60,7 +60,7 @@ static struct attribute *etm_config_formats_attr[] = { ...@@ -60,7 +60,7 @@ static struct attribute *etm_config_formats_attr[] = {
NULL, NULL,
}; };
static struct attribute_group etm_pmu_format_group = { static const struct attribute_group etm_pmu_format_group = {
.name = "format", .name = "format",
.attrs = etm_config_formats_attr, .attrs = etm_config_formats_attr,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册