summaryrefslogtreecommitdiff
path: root/drivers/platform/chrome/cros_ec_vbc.c
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2021-01-09 03:17:48 +0300
committerEnric Balletbo i Serra <enric.balletbo@collabora.com>2021-01-20 18:19:17 +0300
commitd7c1fef7fdc769ee45771059da823c8840590472 (patch)
tree22fff0c6cedddd14d8f3cef44868902193e51bbf /drivers/platform/chrome/cros_ec_vbc.c
parent852405d8efcbca0e02f14592fb1d1dcd0d3fb508 (diff)
downloadlinux-d7c1fef7fdc769ee45771059da823c8840590472.tar.xz
platform/chrome: Constify static attribute_group structs
The only usage of these is to print their name in a dev_err-message, and to pass their address to sysfs_create_group() and sysfs_remove_group(), both which takes pointers to const. Make them const to allow the compiler to put them in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Link: https://lore.kernel.org/r/20210109001748.58036-1-rikard.falkeborn@gmail.com
Diffstat (limited to 'drivers/platform/chrome/cros_ec_vbc.c')
-rw-r--r--drivers/platform/chrome/cros_ec_vbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_ec_vbc.c b/drivers/platform/chrome/cros_ec_vbc.c
index f3a70a312b43..c859c862d7ac 100644
--- a/drivers/platform/chrome/cros_ec_vbc.c
+++ b/drivers/platform/chrome/cros_ec_vbc.c
@@ -101,7 +101,7 @@ static struct bin_attribute *cros_ec_vbc_bin_attrs[] = {
NULL
};
-static struct attribute_group cros_ec_vbc_attr_group = {
+static const struct attribute_group cros_ec_vbc_attr_group = {
.name = "vbc",
.bin_attrs = cros_ec_vbc_bin_attrs,
};