diff options
author | Hanjun Guo <guohanjun@huawei.com> | 2020-09-07 20:57:29 +0800 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-09-25 12:48:10 +0200 |
commit | ad4a0f240882135bcedc207bb52e098029e5fbc7 (patch) | |
tree | 9ee3a42cf545eebdebb8bb73927bdc00f07c0a08 | |
parent | ba4f184e126b751d1bffad5897f263108befc780 (diff) | |
download | linux-rt-ad4a0f240882135bcedc207bb52e098029e5fbc7.tar.gz |
ACPI: APD: Add kerneldoc for properties in struct apd_device_desc
commit 7ff55d174cbf ("ACPI / APD: Provide build-in properties of the
UART") added the struct property_entry *properties field to struct
apd_device_desc, but didn't add the kernel doc for it, so add it now.
Signed-off-by: Hanjun Guo <guohanjun@huawei.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpi_apd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/acpi_apd.c b/drivers/acpi/acpi_apd.c index 806b8ce05624..2a3db9956229 100644 --- a/drivers/acpi/acpi_apd.c +++ b/drivers/acpi/acpi_apd.c @@ -34,6 +34,7 @@ struct apd_private_data; * @flags: device flags like %ACPI_APD_SYSFS, %ACPI_APD_PM * @fixed_clk_rate: fixed rate input clock source for acpi device; * 0 means no fixed rate input clock source + * @properties: build-in properties of the device such as UART * @setup: a hook routine to set device resource during create platform device * * Device description defined as acpi_device_id.driver_data |