From: Arvind Yadav Date: Mon, 7 Aug 2017 06:24:15 +0000 (+0530) Subject: uwb: lc-rc: constify attribute_group structures. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f892a9bc41c7fbd1c918a134e754ec3dc9adfcea;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git uwb: lc-rc: 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/uwb/lc-rc.c b/drivers/uwb/lc-rc.c index 97ee1b46db69..b0816c753a63 100644 --- a/drivers/uwb/lc-rc.c +++ b/drivers/uwb/lc-rc.c @@ -228,7 +228,7 @@ static struct attribute *rc_attrs[] = { NULL, }; -static struct attribute_group rc_attr_group = { +static const struct attribute_group rc_attr_group = { .attrs = rc_attrs, };