aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/jasperlake/romstage/romstage.c
diff options
context:
space:
mode:
authorUsha P <usha.p@intel.com>2020-07-15 14:14:36 +0530
committerPatrick Georgi <pgeorgi@google.com>2020-07-26 21:24:32 +0000
commit253b7d22fe9fea679ccbafd4d55142088e203127 (patch)
tree7a5a4ed76aa98ec7ff61590325b4994fa060446b /src/soc/intel/jasperlake/romstage/romstage.c
parent6217a15674eb73a3c453d8b1de40bc4e7ea3c90a (diff)
soc/intel/jasperlakelake: Rename pch_init() code
Rename the pch_init function to bootblock_pch_init and romstage_pch_init according to the stage it is defined in. TEST=Able to build and boot Waddledoo successfully. Signed-off-by: Usha P <usha.p@intel.com> Change-Id: Iaa0a41f3b5972251d6cd9359bbb46d392196b2e2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43479 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/jasperlake/romstage/romstage.c')
-rw-r--r--src/soc/intel/jasperlake/romstage/romstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/jasperlake/romstage/romstage.c b/src/soc/intel/jasperlake/romstage/romstage.c
index 54632383eb..db014ea5d6 100644
--- a/src/soc/intel/jasperlake/romstage/romstage.c
+++ b/src/soc/intel/jasperlake/romstage/romstage.c
@@ -131,7 +131,7 @@ void mainboard_romstage_entry(void)
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
systemagent_early_init();
/* Program PCH init */
- pch_init();
+ romstage_pch_init();
/* initialize Heci interface */
heci_init(HECI1_BASE_ADDRESS);