diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-15 18:00:18 +1300 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-03-27 13:59:37 +1300 |
commit | e35b6497f417c60cdcaa521eb4cbd3b2bb2e8336 (patch) | |
tree | 1d8fb0c753f02b03e304c1b45d0be213a9b3349b /board/coreboot | |
parent | ad66323a58cb6279aa9e8ba521a4daf25d0cbe79 (diff) | |
download | u-boot-e35b6497f417c60cdcaa521eb4cbd3b2bb2e8336.tar.gz |
x86: Make coreboot sysinfo available to any x86 board
It is possible to boot U-Boot for chromebook_coral either 'bare metal' or
from coreboot. In the latter case we want to provide access to the coreboot
sysinfo tables. Move the definitions into a file available to any x86
board.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/coreboot')
-rw-r--r-- | board/coreboot/coreboot/coreboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/coreboot/coreboot/coreboot.c b/board/coreboot/coreboot/coreboot.c index 9aafb8920cd..175d3ce691a 100644 --- a/board/coreboot/coreboot/coreboot.c +++ b/board/coreboot/coreboot/coreboot.c @@ -4,7 +4,7 @@ */ #include <common.h> -#include <asm/arch/sysinfo.h> +#include <asm/cb_sysinfo.h> #include <asm/global_data.h> #include <init.h> #include <smbios.h> |