aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/acpi_configfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpi_configfs.c b/drivers/acpi/acpi_configfs.c
index 853bc7fc673f..b58850389094 100644
--- a/drivers/acpi/acpi_configfs.c
+++ b/drivers/acpi/acpi_configfs.c
@@ -204,7 +204,7 @@ struct configfs_attribute *acpi_table_attrs[] = {
204 NULL, 204 NULL,
205}; 205};
206 206
207static struct config_item_type acpi_table_type = { 207static const struct config_item_type acpi_table_type = {
208 .ct_owner = THIS_MODULE, 208 .ct_owner = THIS_MODULE,
209 .ct_bin_attrs = acpi_table_bin_attrs, 209 .ct_bin_attrs = acpi_table_bin_attrs,
210 .ct_attrs = acpi_table_attrs, 210 .ct_attrs = acpi_table_attrs,
@@ -237,12 +237,12 @@ struct configfs_group_operations acpi_table_group_ops = {
237 .drop_item = acpi_table_drop_item, 237 .drop_item = acpi_table_drop_item,
238}; 238};
239 239
240static struct config_item_type acpi_tables_type = { 240static const struct config_item_type acpi_tables_type = {
241 .ct_owner = THIS_MODULE, 241 .ct_owner = THIS_MODULE,
242 .ct_group_ops = &acpi_table_group_ops, 242 .ct_group_ops = &acpi_table_group_ops,
243}; 243};
244 244
245static struct config_item_type acpi_root_group_type = { 245static const struct config_item_type acpi_root_group_type = {
246 .ct_owner = THIS_MODULE, 246 .ct_owner = THIS_MODULE,
247}; 247};
248 248