From: Arvind Yadav Date: Thu, 3 Aug 2017 11:26:43 +0000 (+0530) Subject: HID: multitouch: constify attribute_group structures. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9182fb98d64baad43a5721c7617cbf91a89279dd;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git HID: multitouch: constify attribute_group structures. attribute_group are not supposed to change at runtime. All functions working with attribute_group provided by work with const attribute_group. So mark the non-const structs as const. Signed-off-by: Arvind Yadav Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index aff20f4b6d97..e8acf93e6597 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c @@ -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 };