diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-27 11:27:56 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-29 07:32:43 +0200 |
commit | 65e8f647bc55ee28bd389789788e666279537510 (patch) | |
tree | e93254e6c05cebec7beaf698437bb576aae656b6 /src/soc/intel/broadwell | |
parent | 7b3512dde3efa3d25d715bb61326ebfc995e9a69 (diff) |
intel romstage: Use run_ramstage()
Change-Id: I22a33e6027a4e807f7157a0dfafbd6377bc1285d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/15461
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/romstage/romstage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/broadwell/romstage/romstage.c b/src/soc/intel/broadwell/romstage/romstage.c index 762758dd37..c6ffe7ad68 100644 --- a/src/soc/intel/broadwell/romstage/romstage.c +++ b/src/soc/intel/broadwell/romstage/romstage.c @@ -18,7 +18,6 @@ #include <arch/cpu.h> #include <arch/io.h> #include <arch/cbfs.h> -#include <arch/stages.h> #include <arch/early_variables.h> #include <console/console.h> #include <cbfs.h> @@ -26,6 +25,7 @@ #include <cpu/x86/mtrr.h> #include <elog.h> #include <tpm.h> +#include <program_loading.h> #include <romstage_handoff.h> #include <stage_cache.h> #include <timestamp.h> @@ -129,7 +129,7 @@ void romstage_common(struct romstage_params *params) void asmlinkage romstage_after_car(void) { /* Load the ramstage. */ - copy_and_run(); + run_ramstage(); while (1); } |