瀏覽代碼

arm64: cpuinfo: 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.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Arvind Yadav 8 年之前
父節點
當前提交
70a62ad19e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm64/kernel/cpuinfo.c

+ 1 - 1
arch/arm64/kernel/cpuinfo.c

@@ -227,7 +227,7 @@ static struct attribute *cpuregs_id_attrs[] = {
 	NULL
 };
 
-static struct attribute_group cpuregs_attr_group = {
+static const struct attribute_group cpuregs_attr_group = {
 	.attrs = cpuregs_id_attrs,
 	.name = "identification"
 };