diff mbox series

ACPI: APMT: Fix kerneldoc and indentation

Message ID 20221111234323.16182-1-bwicaksono@nvidia.com
State Accepted
Headers show
Series ACPI: APMT: Fix kerneldoc and indentation | expand

Commit Message

Besar Wicaksono Nov. 11, 2022, 11:43 p.m. UTC
Add missing kerneldoc and fix alignment on one of the arguments of
apmt_add_platform_device function.

Signed-off-by: Besar Wicaksono <bwicaksono@nvidia.com>
---
 drivers/acpi/arm64/apmt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Will Deacon Nov. 15, 2022, 6:32 p.m. UTC | #1
On Fri, 11 Nov 2022 17:43:23 -0600, Besar Wicaksono wrote:
> Add missing kerneldoc and fix alignment on one of the arguments of
> apmt_add_platform_device function.
> 
> 

Applied to arm64 (for-next/acpi), thanks!

[1/1] ACPI: APMT: Fix kerneldoc and indentation
      https://git.kernel.org/arm64/c/39522031798d

Cheers,
diff mbox series

Patch

diff --git a/drivers/acpi/arm64/apmt.c b/drivers/acpi/arm64/apmt.c
index f55167ca51e7..5a3f90a34e4b 100644
--- a/drivers/acpi/arm64/apmt.c
+++ b/drivers/acpi/arm64/apmt.c
@@ -66,11 +66,12 @@  static int __init apmt_init_resources(struct resource *res,
 /**
  * apmt_add_platform_device() - Allocate a platform device for APMT node
  * @node: Pointer to device ACPI APMT node
+ * @fwnode: fwnode associated with the APMT node
  *
  * Returns: 0 on success, <0 failure
  */
 static int __init apmt_add_platform_device(struct acpi_apmt_node *node,
-							struct fwnode_handle *fwnode)
+					   struct fwnode_handle *fwnode)
 {
 	struct platform_device *pdev;
 	int ret, count;