diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-02-12 17:11:19 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2021-02-12 17:34:14 +0300 |
commit | c82ff99eaab83df6b962ce83521c456ba9cf44c2 (patch) | |
tree | 3e849b23b5c548e3f2ddfe6fb4fc3d3d3592630c /drivers/acpi | |
parent | 325aa816143228a0b3472074ffb50d55ac3f04fe (diff) | |
download | linux-c82ff99eaab83df6b962ce83521c456ba9cf44c2.tar.xz |
ACPI: property: Satisfy kernel doc validator (part 1)
CHECK drivers/acpi/property.c
warning: Function parameter or member 'data' not described in 'acpi_data_get_property_array'
warning: Excess function parameter 'adev' description in 'acpi_data_get_property_array'
Fixes: 3a7a2ab839ad ("ACPI / property: Extend fwnode_property_* to data-only subnodes")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/property.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c index 2b65ad9b4c0d..ab4d7c734b0d 100644 --- a/drivers/acpi/property.c +++ b/drivers/acpi/property.c @@ -564,7 +564,7 @@ int acpi_node_prop_get(const struct fwnode_handle *fwnode, /** * acpi_data_get_property_array - return an ACPI array property with given name - * @adev: ACPI data object to get the property from + * @data: ACPI data object to get the property from * @name: Name of the property * @type: Expected type of array elements * @obj: Location to store a pointer to the property value (if not NULL) |