diff options
Diffstat (limited to 'src/soc/intel/fsp_broadwell_de')
-rw-r--r-- | src/soc/intel/fsp_broadwell_de/romstage/romstage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/fsp_broadwell_de/romstage/romstage.c b/src/soc/intel/fsp_broadwell_de/romstage/romstage.c index dc883a4308..91c2532af0 100644 --- a/src/soc/intel/fsp_broadwell_de/romstage/romstage.c +++ b/src/soc/intel/fsp_broadwell_de/romstage/romstage.c @@ -19,9 +19,9 @@ #include <lib.h> #include <arch/io.h> #include <arch/cbfs.h> -#include <arch/stages.h> #include <console/console.h> #include <cpu/x86/mtrr.h> +#include <program_loading.h> #include <romstage_handoff.h> #include <timestamp.h> #include <version.h> @@ -110,7 +110,7 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr) /* Load the ramstage. */ post_code(0x4e); - copy_and_run(); + run_ramstage(); while (1); } |