ACPI: APD: fix a block comment align issue

Fix the following coding style issue reported by checkpatch.pl:

WARNING: Block comments should align the * on each line
+/**
+* Create platform device during acpi scan attach handle.

Signed-off-by: Xiaofei Tan <tanxiaofei@huawei.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Xiaofei Tan 2021-03-27 20:08:13 +08:00 committed by Rafael J. Wysocki
parent 9104457ea5
commit 0955b3a5c5
1 changed files with 4 additions and 4 deletions

View File

@ -176,10 +176,10 @@ static const struct apd_device_desc hip08_spi_desc = {
#endif #endif
/** /*
* Create platform device during acpi scan attach handle. * Create platform device during acpi scan attach handle.
* Return value > 0 on success of creating device. * Return value > 0 on success of creating device.
*/ */
static int acpi_apd_create_device(struct acpi_device *adev, static int acpi_apd_create_device(struct acpi_device *adev,
const struct acpi_device_id *id) const struct acpi_device_id *id)
{ {