From: Arvind Yadav Date: Fri, 4 Aug 2017 06:37:56 +0000 (+0530) Subject: misc: lis3lv02d: constify attribute_group structures. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=27c0823fd9a3aad44f00e0e4dfa9d1b3ce3841a6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git misc: lis3lv02d: 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: Greg Kroah-Hartman --- diff --git a/drivers/misc/lis3lv02d/lis3lv02d.c b/drivers/misc/lis3lv02d/lis3lv02d.c index e389b0b5278d..8d53609861d8 100644 --- a/drivers/misc/lis3lv02d/lis3lv02d.c +++ b/drivers/misc/lis3lv02d/lis3lv02d.c @@ -856,7 +856,7 @@ static struct attribute *lis3lv02d_attributes[] = { NULL }; -static struct attribute_group lis3lv02d_attribute_group = { +static const struct attribute_group lis3lv02d_attribute_group = { .attrs = lis3lv02d_attributes };