Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84189?usp=email )
Change subject: soc/intel/meteorlake: Remove unused pch_handle_sideband() function ......................................................................
soc/intel/meteorlake: Remove unused pch_handle_sideband() function
This change removes the unused pch_handle_sideband() function from the Meteor Lake platform code.
TEST=Able to build and boot google/rex.
Change-Id: Idd14748aa1d917d6e88d738541a737c04a2c6a15 Signed-off-by: Subrata Banik subratabanik@google.com --- M src/soc/intel/meteorlake/finalize.c 1 file changed, 0 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/84189/1
diff --git a/src/soc/intel/meteorlake/finalize.c b/src/soc/intel/meteorlake/finalize.c index ed29ba9..36837f9 100644 --- a/src/soc/intel/meteorlake/finalize.c +++ b/src/soc/intel/meteorlake/finalize.c @@ -23,10 +23,6 @@ #include <soc/soc_chip.h> #include <soc/systemagent.h>
-static void pch_handle_sideband(config_t *config) -{ -} - static void pch_finalize(void) { config_t *config = config_of_soc(); @@ -36,8 +32,6 @@
/* TODO: Add Thermal Configuration */
- pch_handle_sideband(config); - pmc_clear_pmcon_sts(); }