diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-26 14:19:56 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-27 16:38:19 +0000 |
commit | 3aaf8efdfad7081fa39a679f2f6d28a176c3a005 (patch) | |
tree | b381ee880f41fa59e3af062cf903df423ec73335 /src/soc/amd | |
parent | 7f471dd728f6aec10a74fefc6c0c4aee938e1977 (diff) |
soc/amd/common/include/acpi: add missing device/device.h include
The southbridge_write_acpi_tables function uses a struct device type
parameter, but device/device.h that provides the definition wasn't
included.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I5245fa132ec9b84bbc483a31788bcd6fac0736e1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80220
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/acpi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/acpi.h b/src/soc/amd/common/block/include/amdblocks/acpi.h index 84e3e0c6bf..f02dbe21e1 100644 --- a/src/soc/amd/common/block/include/amdblocks/acpi.h +++ b/src/soc/amd/common/block/include/amdblocks/acpi.h @@ -5,6 +5,7 @@ #include <acpi/acpi.h> #include <amdblocks/gpio.h> +#include <device/device.h> #include <types.h> /* ACPI MMIO registers 0xfed80800 */ |