diff options
author | Subrata Banik <subratabanik@google.com> | 2024-09-02 21:55:24 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-09-04 03:42:55 +0000 |
commit | 17888bf4de9bda3d38d4dd18b747cc82bbdd995a (patch) | |
tree | 9e9ea308fd7fa483d9d2368f316859c26df27cb4 /src/soc/intel/meteorlake | |
parent | 589d34732bf38b4b25666e3c6a936a276c08948a (diff) |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84189
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Pratikkumar V Prajapati <pratikkumar.v.prajapati@intel.com>
Diffstat (limited to 'src/soc/intel/meteorlake')
-rw-r--r-- | src/soc/intel/meteorlake/finalize.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/soc/intel/meteorlake/finalize.c b/src/soc/intel/meteorlake/finalize.c index ed29ba99a1..1fd1d98fb5 100644 --- a/src/soc/intel/meteorlake/finalize.c +++ b/src/soc/intel/meteorlake/finalize.c @@ -23,21 +23,13 @@ #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(); - /* TCO Lock down */ tco_lockdown(); /* TODO: Add Thermal Configuration */ - pch_handle_sideband(config); - pmc_clear_pmcon_sts(); } |