Message ID | 20220711112606.3050368-4-sakari.ailus@linux.intel.com |
---|---|
State | Accepted |
Commit | 5ee772883af5ed2dfe17e8af2b09d7003344be6c |
Headers | show |
Series | ACPI: Buffer property and reference as string support | expand |
diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c index 08b5292d2f89b..8d757ca2a58f3 100644 --- a/drivers/acpi/property.c +++ b/drivers/acpi/property.c @@ -793,7 +793,7 @@ int __acpi_node_get_property_reference(const struct fwnode_handle *fwnode, * nor integer, return an error, we can't parse it. */ for (i = 0; element + i < end && i < num_args; i++) { - int type = element[i].type; + acpi_object_type type = element[i].type; if (type == ACPI_TYPE_LOCAL_REFERENCE) break;