Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52899 )
Change subject: soc/amd/picasso/agesa_acpi: add missing device/device.h include ......................................................................
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 --- M src/soc/amd/picasso/agesa_acpi.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved Raul Rangel: Looks good to me, approved
diff --git a/src/soc/amd/picasso/agesa_acpi.c b/src/soc/amd/picasso/agesa_acpi.c index 5122be5..a8ce780 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>