9p: Constify static struct v9fs_attr_group

The only usage of v9fs_attr_group is to pass its address to
sysfs_create_group() and sysfs_create_group(), both which takes pointers
to const struct attribute_group. Make it const to allow the compiler to
put it in read-only memory.

Link: http://lkml.kernel.org/r/20210108224650.25872-1-rikard.falkeborn@gmail.com
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
This commit is contained in:
Rikard Falkeborn 2021-01-08 23:46:50 +01:00 committed by Dominique Martinet
parent a5e13c6df0
commit 0dae52282a
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ static struct attribute *v9fs_attrs[] = {
NULL,
};
static struct attribute_group v9fs_attr_group = {
static const struct attribute_group v9fs_attr_group = {
.attrs = v9fs_attrs,
};