soc/amd/common/fsp: use expected types for add_agesa_fsp_acpi_table

add_agesa_fsp_acpi_table should use the same type for the 'current'
parameter and return value as the calling soc_acpi_write_tables does.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ie9f770b1d847ea28e4dbd96298a723d794b91a02
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80219
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
This commit is contained in:
Felix Held 2024-01-26 15:25:56 +01:00
parent ae54db7926
commit 7f471dd728
2 changed files with 4 additions and 4 deletions

View file

@ -52,8 +52,8 @@ struct chipset_power_state {
unsigned long southbridge_write_acpi_tables(const struct device *device, unsigned long current, unsigned long southbridge_write_acpi_tables(const struct device *device, unsigned long current,
struct acpi_rsdp *rsdp); struct acpi_rsdp *rsdp);
uintptr_t add_agesa_fsp_acpi_table(guid_t guid, const char *name, acpi_rsdp_t *rsdp, unsigned long add_agesa_fsp_acpi_table(guid_t guid, const char *name, acpi_rsdp_t *rsdp,
uintptr_t current); unsigned long current);
void acpi_log_events(const struct chipset_power_state *ps); void acpi_log_events(const struct chipset_power_state *ps);
unsigned long acpi_add_ivrs_table(unsigned long current, acpi_rsdp_t *rsdp); unsigned long acpi_add_ivrs_table(unsigned long current, acpi_rsdp_t *rsdp);

View file

@ -15,8 +15,8 @@ struct amd_fsp_acpi_hob_info {
uint16_t hob_payload[0xffc8]; /* maximum payload size */ uint16_t hob_payload[0xffc8]; /* maximum payload size */
} __packed; } __packed;
uintptr_t add_agesa_fsp_acpi_table(guid_t guid, const char *name, acpi_rsdp_t *rsdp, unsigned long add_agesa_fsp_acpi_table(guid_t guid, const char *name, acpi_rsdp_t *rsdp,
uintptr_t current) unsigned long current)
{ {
const struct amd_fsp_acpi_hob_info *data; const struct amd_fsp_acpi_hob_info *data;
void *table = (void *)current; void *table = (void *)current;