diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2021-10-05 21:42:57 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-10-13 13:51:24 +0000 |
commit | f72c7b154dfbbe7bc456d30ee80a875e2cb1c656 (patch) | |
tree | ee016336e07cd2a1a2665cf861af6853449e401e /src/include | |
parent | 9cae17d028d4bd3b278fc89ada8e06287917e213 (diff) |
soc/amd/cezanne,soc/intel/common: rework CPPC table generation
Make use of the newly introduced ACPI macros for CPPC table generation
that currently exists of a bunch of confusing assignments of structs
that only get partially filled.
Test: dumped SSDT before and after do not differ.
Change-Id: I844d191b1134b98e409240ede71e2751e51e2159
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57888
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Lance Zhao
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/acpi/acpi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/acpi/acpi.h b/src/include/acpi/acpi.h index e35accdf78..bc0b30c720 100644 --- a/src/include/acpi/acpi.h +++ b/src/include/acpi/acpi.h @@ -130,7 +130,7 @@ typedef struct acpi_gen_regaddr { /* Macros for common resource types */ #define ACPI_REG_MSR(address, offset, width) \ - { \ + (acpi_addr_t){ \ .space_id = ACPI_ADDRESS_SPACE_FIXED, \ .access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS, \ .addrl = address, \ @@ -138,7 +138,7 @@ typedef struct acpi_gen_regaddr { .bit_width = width, \ } -#define ACPI_REG_UNSUPPORTED {0} +#define ACPI_REG_UNSUPPORTED (acpi_addr_t){0} /* Common ACPI HIDs */ #define ACPI_HID_FDC "PNP0700" |