soc/amd/common/block/iommu: Add missing newline to debug print

This makes the log easier to parse.

Change-Id: I1ac3e186b7830dc79f22540810f121806d36175f
Signed-off-by: Benjamin Doron <benjamin.doron@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89120
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Benjamin Doron 2025-09-09 10:17:47 -04:00 committed by Elyes Haouas
commit 79119456a2

View file

@ -28,7 +28,7 @@ static void iommu_enable_resources(struct device *dev)
uint32_t base = pci_read_config32(dev, IOMMU_CAP_BASE_LO);
base |= IOMMU_ENABLE;
pci_write_config32(dev, IOMMU_CAP_BASE_LO, base);
printk(BIOS_DEBUG, "%s -> mmio enable: %08X", __func__,
printk(BIOS_DEBUG, "%s -> mmio enable: %08X\n", __func__,
pci_read_config32(dev, IOMMU_CAP_BASE_LO));
pci_dev_enable_resources(dev);
}