Felix Held has uploaded this change for review. ( 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 liked int verstage on PSP, all-y can be used here.
Change-Id: I03572d760b485938f0d00b6cead00746eda6ca09 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/amd/common/block/acpimmio/Makefile.inc 1 file changed, 1 insertion(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/48436/1
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