Skip to content

Commit 114cbd6

Browse files
committed
Merge branch 'acpi-property'
Merge an ACPI device properties handling change fixing the order of __acpi_node_get_property_reference() arguments broken by a recent update (Sunil V L) * 'acpi-property': ACPI: property: Fix argument order in __acpi_node_get_property_reference()
2 parents 6e3a475 + f3f313c commit 114cbd6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/acpi/property.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ int __acpi_node_get_property_reference(const struct fwnode_handle *fwnode,
11071107
size_t num_args,
11081108
struct fwnode_reference_args *args)
11091109
{
1110-
return acpi_fwnode_get_reference_args(fwnode, propname, NULL, index, num_args, args);
1110+
return acpi_fwnode_get_reference_args(fwnode, propname, NULL, num_args, index, args);
11111111
}
11121112
EXPORT_SYMBOL_GPL(__acpi_node_get_property_reference);
11131113

0 commit comments

Comments
 (0)