Commit 26c2e922 authored by Rikard Falkeborn's avatar Rikard Falkeborn Committed by Greg Kroah-Hartman
Browse files

most: core: Constify static attribute_group structs



The only usage of these is to put their addresses in arrays of pointers
to const attribute_groups. Make them const to allow the compiler to put
them in read-only memory.

Signed-off-by: default avatarRikard Falkeborn <rikard.falkeborn@gmail.com>
Link: https://lore.kernel.org/r/20210108221512.18811-1-rikard.falkeborn@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e4240253
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ static struct attribute *channel_attrs[] = {
	NULL,
};

static struct attribute_group channel_attr_group = {
static const struct attribute_group channel_attr_group = {
	.attrs = channel_attrs,
	.is_visible = channel_attr_is_visible,
};
@@ -436,7 +436,7 @@ static struct attribute *interface_attrs[] = {
	NULL,
};

static struct attribute_group interface_attr_group = {
static const struct attribute_group interface_attr_group = {
	.attrs = interface_attrs,
};

@@ -718,7 +718,7 @@ static struct attribute *mc_attrs[] = {
	NULL,
};

static struct attribute_group mc_attr_group = {
static const struct attribute_group mc_attr_group = {
	.attrs = mc_attrs,
};