platform/x86/intel/pmc: Remove duplicate enum
Remove duplicate enum PMC_IDX_SOC. PMC_IDX_SOC has the same value as PMC_IDX_MAIN. Replace it with PMC_IDX_MAIN to avoid confusion. Signed-off-by: Xi Pardee <xi.pardee@linux.intel.com> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Link: https://lore.kernel.org/r/20250207225615.401235-3-xi.pardee@linux.intel.com Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
This commit is contained in:
@@ -693,7 +693,7 @@ static int arl_resume(struct pmc_dev *pmcdev)
|
||||
|
||||
int arl_core_init(struct pmc_dev *pmcdev)
|
||||
{
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_SOC];
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_MAIN];
|
||||
int ret;
|
||||
int func = 0;
|
||||
bool ssram_init = true;
|
||||
|
||||
@@ -430,7 +430,6 @@ struct pmc_dev {
|
||||
|
||||
enum pmc_index {
|
||||
PMC_IDX_MAIN,
|
||||
PMC_IDX_SOC = PMC_IDX_MAIN,
|
||||
PMC_IDX_IOE,
|
||||
PMC_IDX_PCH,
|
||||
PMC_IDX_MAX
|
||||
|
||||
@@ -553,7 +553,7 @@ static int lnl_resume(struct pmc_dev *pmcdev)
|
||||
int lnl_core_init(struct pmc_dev *pmcdev)
|
||||
{
|
||||
int ret;
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_SOC];
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_MAIN];
|
||||
|
||||
lnl_d3_fixup();
|
||||
|
||||
|
||||
@@ -992,7 +992,7 @@ static int mtl_resume(struct pmc_dev *pmcdev)
|
||||
|
||||
int mtl_core_init(struct pmc_dev *pmcdev)
|
||||
{
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_SOC];
|
||||
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_MAIN];
|
||||
int ret;
|
||||
int func = 2;
|
||||
bool ssram_init = true;
|
||||
|
||||
Reference in New Issue
Block a user