diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-05-04 21:02:40 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-05-05 19:38:50 +0000 |
commit | f3e268bc3b1550abb72a1bcdf114952de9dcad5d (patch) | |
tree | e89bded137f7082a4835267215969f4042e64a49 /src | |
parent | 75a2355a1945d3028a8aa77e8f55eaf5ddfb1214 (diff) | |
download | coreboot-f3e268bc3b1550abb72a1bcdf114952de9dcad5d.tar.xz |
soc/amd/picasso/agesa_acpi: add missing device/device.h include
agesa_write_acpi_tables has one struct device parameter.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I7892cf680661253f74c3e291f5e9fb372e1d4ce3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52899
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/picasso/agesa_acpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/agesa_acpi.c b/src/soc/amd/picasso/agesa_acpi.c index 5122be5d50..a8ce780f33 100644 --- a/src/soc/amd/picasso/agesa_acpi.c +++ b/src/soc/amd/picasso/agesa_acpi.c @@ -9,6 +9,7 @@ #include <FspGuids.h> #include <soc/acpi.h> #include <stdint.h> +#include <device/device.h> #include <device/pci_def.h> #include <device/pci_ops.h> #include <amdblocks/acpi.h> |