[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <f0871f6dc12ea0d90a6acf9d5156f9daaa3ee87a.1501764361.git.arvind.yadav.cs@gmail.com>
Date: Thu, 3 Aug 2017 18:48:15 +0530
From: Arvind Yadav <arvind.yadav.cs@...il.com>
To: rjw@...ysocki.net, lenb@...nel.org
Cc: linux-acpi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] ACPI / dock: 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@...il.com>
---
drivers/acpi/dock.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c
index 0c00208..2305e1a 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -585,7 +585,7 @@ static ssize_t show_dock_type(struct device *dev,
NULL
};
-static struct attribute_group dock_attribute_group = {
+static const struct attribute_group dock_attribute_group = {
.attrs = dock_attributes
};
--
1.9.1
Powered by blists - more mailing lists