From: Simon Glass Date: Sat, 7 Dec 2019 04:42:17 +0000 (-0700) Subject: x86: fsp: Correct wrong header inlude in fsp_support.c X-Git-Tag: v2020.10~431^2~2^2~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f42af294cc13a4ad19eefd5801dc97bf4ee54e5c;p=platform%2Fkernel%2Fu-boot.git x86: fsp: Correct wrong header inlude in fsp_support.c This generic FSP file should include the generic FSP support header, not the FSP1 version. Fix it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/lib/fsp/fsp_support.c b/arch/x86/lib/fsp/fsp_support.c index 983888f..ee22811 100644 --- a/arch/x86/lib/fsp/fsp_support.c +++ b/arch/x86/lib/fsp/fsp_support.c @@ -5,7 +5,7 @@ */ #include -#include +#include #include u32 fsp_get_usable_lowmem_top(const void *hob_list)