Re: [PATCH 1/4] acpi: Use __packed with struct acpi_xsdt

2023-11-12 Thread Simon Glass
Hi Heinrich, On Sun, 12 Nov 2023 at 09:46, Heinrich Schuchardt wrote: > > On 11/12/23 16:58, Simon Glass wrote: > > Since struct acpi_table_header is not a multiple of 64 bits, use the > > __packed option for struct acpi_xsdt > > > > This ensures that the entry[] array starts on the correct

Re: [PATCH 1/4] acpi: Use __packed with struct acpi_xsdt

2023-11-12 Thread Heinrich Schuchardt
On 11/12/23 16:58, Simon Glass wrote: Since struct acpi_table_header is not a multiple of 64 bits, use the __packed option for struct acpi_xsdt This ensures that the entry[] array starts on the correct boundary. Typically we keep the original signed-off-by when reposting patches. Thanks for

[PATCH 1/4] acpi: Use __packed with struct acpi_xsdt

2023-11-12 Thread Simon Glass
Since struct acpi_table_header is not a multiple of 64 bits, use the __packed option for struct acpi_xsdt This ensures that the entry[] array starts on the correct boundary. Signed-off-by: Simon Glass --- include/acpi/acpi_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff