soc/intel/{icl,tgl}: Rename pch_early_init() to pch_init()

This patch renames pch_early_init() function as per review feedback
CB:36550

Change-Id: I9f638e738d1a910b688cc3e51795230b2e542f82
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36841
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: V Sowmya <v.sowmya@intel.com>
This commit is contained in:
Subrata Banik 2019-11-14 12:14:39 +05:30 committed by Patrick Georgi
parent 5885ffef32
commit 5d14c76f1a
6 changed files with 6 additions and 6 deletions

View File

@ -40,5 +40,5 @@ void bootblock_soc_early_init(void)
void bootblock_soc_init(void)
{
report_platform_info();
pch_early_init();
pch_init();
}

View File

@ -150,7 +150,7 @@ void pch_early_iorange_init(void)
pch_enable_lpc();
}
void pch_early_init(void)
void pch_init(void)
{
/*
* Enabling ABASE for accessing PM1_STS, PM1_EN, PM1_CNT,

View File

@ -21,7 +21,7 @@ void bootblock_cpu_init(void);
void bootblock_pch_early_init(void);
/* Bootblock post console init programming */
void pch_early_init(void);
void pch_init(void);
void pch_early_iorange_init(void);
void report_platform_info(void);

View File

@ -40,5 +40,5 @@ void bootblock_soc_early_init(void)
void bootblock_soc_init(void)
{
report_platform_info();
pch_early_init();
pch_init();
}

View File

@ -156,7 +156,7 @@ void pch_early_iorange_init(void)
pch_enable_lpc();
}
void pch_early_init(void)
void pch_init(void)
{
/*
* Enabling ABASE for accessing PM1_STS, PM1_EN, PM1_CNT,

View File

@ -21,7 +21,7 @@ void bootblock_cpu_init(void);
void bootblock_pch_early_init(void);
/* Bootblock post console init programming */
void pch_early_init(void);
void pch_init(void);
void pch_early_iorange_init(void);
void report_platform_info(void);