Merge branch 'for-4.14/constify-attribute_group' into for-linus

- struct attribute_group constification from Arvind Yadav
This commit is contained in:
Jiri Kosina 2017-09-05 11:08:13 +02:00
commit aaf4f13c45
4 changed files with 4 additions and 4 deletions

View file

@ -2926,7 +2926,7 @@ static struct attribute *sysfs_attrs[] = {
NULL
};
static struct attribute_group ps_attribute_group = {
static const struct attribute_group ps_attribute_group = {
.attrs = sysfs_attrs
};

View file

@ -341,7 +341,7 @@ static struct attribute *sysfs_attrs[] = {
NULL
};
static struct attribute_group mt_attribute_group = {
static const struct attribute_group mt_attribute_group = {
.attrs = sysfs_attrs
};

View file

@ -445,7 +445,7 @@ static struct attribute *sysfs_attrs[] = {
NULL
};
static struct attribute_group ntrig_attribute_group = {
static const struct attribute_group ntrig_attribute_group = {
.attrs = sysfs_attrs
};

View file

@ -276,7 +276,7 @@ static struct attribute *enable_sensor_attrs[] = {
NULL,
};
static struct attribute_group enable_sensor_attr_group = {
static const struct attribute_group enable_sensor_attr_group = {
.attrs = enable_sensor_attrs,
};