diff options
author | Subrata Banik <subi.banik@gmail.com> | 2021-11-30 13:17:46 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2021-12-01 06:37:51 +0000 |
commit | 5fb0e5564d87785bf38999dbb664f1d2868fcd2f (patch) | |
tree | 9cf78f77cf44899d08ff07b209cac446b3fc8c2b /src/soc/intel/common/block/pmc | |
parent | ccff30475165919914029a7756dc20d783c7ebe3 (diff) |
soc/intel/common/pmc: Drop unnecessary pmc_ipc.c entry
This patch drops unnecessary `pmc_ipc.c` from Makefile as this
file is getting included upon CONFIG_PMC_IPC_ACPI_INTERFACE selection.
Change-Id: Ie66f0833daf033ec16210221610508f9fbb1e6c7
Signed-off-by: Subrata Banik <subi.banik@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59747
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/common/block/pmc')
-rw-r--r-- | src/soc/intel/common/block/pmc/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/pmc/Makefile.inc b/src/soc/intel/common/block/pmc/Makefile.inc index de69b63b4e..8dacc10910 100644 --- a/src/soc/intel/common/block/pmc/Makefile.inc +++ b/src/soc/intel/common/block/pmc/Makefile.inc @@ -2,7 +2,7 @@ ifeq ($(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC),y) bootblock-y += pmclib.c romstage-y += pmclib.c ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC_DISCOVERABLE) += pmc.c -ramstage-y += pmclib.c pmc_ipc.c +ramstage-y += pmclib.c smm-y += pmclib.c verstage-y += pmclib.c postcar-y += pmclib.c |