Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/48436 )
Change subject: soc/amd/common/block/acpimmio: use all-y for mmio_util target ......................................................................
soc/amd/common/block/acpimmio: use all-y for mmio_util target
Since mmio_util gets also linked into verstage on PSP, all-y can be used here.
Change-Id: I03572d760b485938f0d00b6cead00746eda6ca09 Signed-off-by: Felix Held felix-coreboot@felixheld.de Reviewed-on: https://review.coreboot.org/c/coreboot/+/48436 Reviewed-by: Marshall Dawson marshalldawson3rd@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/common/block/acpimmio/Makefile.inc 1 file changed, 1 insertion(+), 5 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved
diff --git a/src/soc/amd/common/block/acpimmio/Makefile.inc b/src/soc/amd/common/block/acpimmio/Makefile.inc index 6b3e423..c93e67d 100644 --- a/src/soc/amd/common/block/acpimmio/Makefile.inc +++ b/src/soc/amd/common/block/acpimmio/Makefile.inc @@ -1,10 +1,6 @@ ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_ACPIMMIO),y)
-bootblock-y += mmio_util.c -verstage-y += mmio_util.c -romstage-y += mmio_util.c -postcar-y += mmio_util.c -ramstage-y += mmio_util.c +all-y += mmio_util.c smm-y += mmio_util.c
bootblock-y += biosram.c