Re: [PATCH 1/1] acpi: simplify acpi_write_ssdt()

2023-12-13 Thread Simon Glass
On Sat, 18 Nov 2023 at 14:52, Heinrich Schuchardt wrote: > > * Converting to void * is superfluous when calling memset(). > * acpi_fill_header() already fills oem_table_id. > > Fixes: d953137526cc ("x86: Move SSDT table to a writer function") > Signed-off-by: Heinrich Schuchardt > --- > lib/acpi

Re: [PATCH 1/1] acpi: simplify acpi_write_ssdt()

2023-11-18 Thread Simon Glass
On Sat, 18 Nov 2023 at 14:52, Heinrich Schuchardt wrote: > > * Converting to void * is superfluous when calling memset(). > * acpi_fill_header() already fills oem_table_id. > > Fixes: d953137526cc ("x86: Move SSDT table to a writer function") > Signed-off-by: Heinrich Schuchardt > --- > lib/acpi

[PATCH 1/1] acpi: simplify acpi_write_ssdt()

2023-11-18 Thread Heinrich Schuchardt
* Converting to void * is superfluous when calling memset(). * acpi_fill_header() already fills oem_table_id. Fixes: d953137526cc ("x86: Move SSDT table to a writer function") Signed-off-by: Heinrich Schuchardt --- lib/acpi/ssdt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --g