diff options
| author | Arvind Yadav <[email protected]> | 2017-08-04 12:07:55 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-08-28 16:55:48 +0200 |
| commit | 64e6d2c187d8ca78629e7206e7efd67773c9a0cb (patch) | |
| tree | 1925ee73bca931a7e5e94e23ca2d14c1ddd96c8c | |
| parent | 27c0823fd9a3aad44f00e0e4dfa9d1b3ce3841a6 (diff) | |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/misc/isl29020.c | 2 |
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 }; |