aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-08-04 12:07:55 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-08-28 16:55:48 +0200
commit64e6d2c187d8ca78629e7206e7efd67773c9a0cb (patch)
tree1925ee73bca931a7e5e94e23ca2d14c1ddd96c8c /drivers/misc
parentmisc: lis3lv02d: constify attribute_group structures. (diff)
downloadlinux-dev-64e6d2c187d8ca78629e7206e7efd67773c9a0cb.tar.xz
linux-dev-64e6d2c187d8ca78629e7206e7efd67773c9a0cb.zip
misc: isl29020: constify attribute_group structures.
attribute_group are not supposed to change at runtime. All functions working with attribute_group 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/isl29020.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/isl29020.c b/drivers/misc/isl29020.c
index 4a9c50a43afb..15d1749f5452 100644
--- a/drivers/misc/isl29020.c
+++ b/drivers/misc/isl29020.c
@@ -145,7 +145,7 @@ static struct attribute *mid_att_als[] = {
NULL
};
-static struct attribute_group m_als_gr = {
+static const struct attribute_group m_als_gr = {
.name = "isl29020",
.attrs = mid_att_als
};