Nicholas Chin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84589?usp=email )
Change subject: vc/amd/opensil/genoa_poc: Explicitly include static.h for config_of_soc ......................................................................
vc/amd/opensil/genoa_poc: Explicitly include static.h for config_of_soc
As per commit 865173153760 ("sconfig: Move config_of_soc from device.h to static.h"), sources that require access to the devicetree should directly include static.h so that it can be removed from device.h, eliminating unnecessary dependencies on static.h for files that only need the types and function declarations in device.h.
Change-Id: I83c3e5db85b98196c465146ba8e3481041d2f7eb Signed-off-by: Nicholas Chin nic.c3.14@gmail.com --- M src/vendorcode/amd/opensil/genoa_poc/ramstage.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/84589/1
diff --git a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c index b18ccc9..b1bbc07 100644 --- a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c +++ b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c @@ -9,6 +9,7 @@ #include <cpu/cpu.h> #include <device/device.h> #include <soc/soc_chip.h> +#include <static.h> #include <stdio.h> #include <xSIM-api.h> #include "opensil_console.h"