summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/sandybridge/early_init.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-17 18:10:49 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-23 02:35:53 +0000
commit4ce0a07f0670e74dd22d5f7af4b8603db2320ded (patch)
tree60679c42a7f8eba961dab8c8d9fcdfb14b02c47b /src/northbridge/intel/sandybridge/early_init.c
parentb6fc13b3dbc943b4981b6b33ba7a0e025c62398a (diff)
downloadcoreboot-4ce0a07f0670e74dd22d5f7af4b8603db2320ded.tar.gz
coreboot-4ce0a07f0670e74dd22d5f7af4b8603db2320ded.tar.bz2
coreboot-4ce0a07f0670e74dd22d5f7af4b8603db2320ded.zip
nb/intel/x4x,sandybridge: Move romstage_handoff_init() call
Change-Id: I6356bb7ea904ca860cbedd46515924505d515791 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50972 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/northbridge/intel/sandybridge/early_init.c')
-rw-r--r--src/northbridge/intel/sandybridge/early_init.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/northbridge/intel/sandybridge/early_init.c b/src/northbridge/intel/sandybridge/early_init.c
index 42957e540b32..b7ee3225ec24 100644
--- a/src/northbridge/intel/sandybridge/early_init.c
+++ b/src/northbridge/intel/sandybridge/early_init.c
@@ -6,7 +6,6 @@
#include <device/pci_ops.h>
#include <device/pci_def.h>
#include <option.h>
-#include <romstage_handoff.h>
#include <types.h>
#include "sandybridge.h"
@@ -194,9 +193,7 @@ void systemagent_early_init(void)
start_peg_link_training();
}
-void northbridge_romstage_finalize(int s3resume)
+void northbridge_romstage_finalize(void)
{
MCHBAR16(SSKPD_HI) = 0xCAFE;
-
- romstage_handoff_init(s3resume);
}