diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-06 21:42:17 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-12-15 11:44:16 +0800 |
commit | f42af294cc13a4ad19eefd5801dc97bf4ee54e5c (patch) | |
tree | 0e376c983f7542c847b2414c460edea362ca3b06 | |
parent | f09d4edf4bf7ffe046ca37731850cc99e3e1d758 (diff) | |
download | u-boot-f42af294cc13a4ad19eefd5801dc97bf4ee54e5c.zip u-boot-f42af294cc13a4ad19eefd5801dc97bf4ee54e5c.tar.gz u-boot-f42af294cc13a4ad19eefd5801dc97bf4ee54e5c.tar.bz2 |
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 <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | arch/x86/lib/fsp/fsp_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <common.h> -#include <asm/fsp1/fsp_support.h> +#include <asm/fsp/fsp_support.h> #include <asm/post.h> u32 fsp_get_usable_lowmem_top(const void *hob_list) |