2023-12-08 20:08:03

by Rafael J. Wysocki

[permalink] [raw]
Subject: [PATCH v1 4/4] ACPI: utils: Fix white space in struct acpi_handle_list definition

From: Rafael J. Wysocki <[email protected]>

Fix inadvertently introduced white space damage in the struct
acpi_handle_list definition.

No functional impact.

Fixes: 2e57d10a6591 ("ACPI: utils: Dynamically determine acpi_handle_list size")
Signed-off-by: Rafael J. Wysocki <[email protected]>
---
include/acpi/acpi_bus.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-pm/include/acpi/acpi_bus.h
===================================================================
--- linux-pm.orig/include/acpi/acpi_bus.h
+++ linux-pm/include/acpi/acpi_bus.h
@@ -14,7 +14,7 @@

struct acpi_handle_list {
u32 count;
- acpi_handle* handles;
+ acpi_handle *handles;
};

/* acpi_utils.h */