diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-01 23:34:18 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-01 23:34:18 -0400 |
commit | ecd4d99f654f3f7bfb96001891d69c3125e70b69 (patch) | |
tree | 405530bb85d5fdc97aadd6c65d9678d4ce3c54b6 /arch/x86/lib/spl.c | |
parent | b5d54d26ea1354fede1121671a7ca3b9b44b5b5c (diff) | |
parent | 95cfa1d46c61461bdadb195799a205b48b907a5e (diff) |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86
- Corrected some FSP-M/FSP-S settings for Chromebook Coral
- ICH SPI driver and mrccache fixes for obtaining the SPI memory map
- Fixed various warnings generated by latest version IASL when compiling
ACPI tables
Diffstat (limited to 'arch/x86/lib/spl.c')
-rw-r--r-- | arch/x86/lib/spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index b6f9a70ba7..cf22fa2d7b 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -164,8 +164,8 @@ void board_init_f(ulong flags) ret = x86_spl_init(); if (ret) { - debug("Error %d\n", ret); - panic("x86_spl_init fail"); + printf("x86_spl_init: error %d\n", ret); + hang(); } #if IS_ENABLED(CONFIG_TPL) || IS_ENABLED(CONFIG_SYS_COREBOOT) gd->bd = malloc(sizeof(*gd->bd)); |