aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parisc
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-07-11 14:30:34 +0530
committerHelge Deller <deller@gmx.de>2017-07-23 21:02:17 +0200
commit343fdfb7d062a52ff39a004d42e4ad1cf7883bc6 (patch)
tree4cd7147094594c512d561aa76627167245e76a44 /drivers/parisc
parentparisc: Merge millicode routines via linker script (diff)
downloadlinux-dev-343fdfb7d062a52ff39a004d42e4ad1cf7883bc6.tar.xz
linux-dev-343fdfb7d062a52ff39a004d42e4ad1cf7883bc6.zip
parisc: pdc_stable: 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: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/parisc')
-rw-r--r--drivers/parisc/pdc_stable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/pdc_stable.c b/drivers/parisc/pdc_stable.c
index 055f83fddc18..7147aa53e9a2 100644
--- a/drivers/parisc/pdc_stable.c
+++ b/drivers/parisc/pdc_stable.c
@@ -954,7 +954,7 @@ static struct attribute *pdcs_subsys_attrs[] = {
NULL,
};
-static struct attribute_group pdcs_attr_group = {
+static const struct attribute_group pdcs_attr_group = {
.attrs = pdcs_subsys_attrs,
};