From 3e89a234ef527b20469ad2b4161e02bab4379372 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Mon, 23 Feb 2026 22:15:29 +0100 Subject: [PATCH] nb/intel/broadwell/acpi.c: Align with Haswell The idea is to use Haswell's acpi.c file in the next commit, and this little difference affects reproducibility. Change-Id: Ib2641586fbb9e8ed175eeca0bd665057f5049c0e Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/91403 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/northbridge/intel/broadwell/acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/northbridge/intel/broadwell/acpi.c b/src/northbridge/intel/broadwell/acpi.c index 453c77a235..5da7bd3476 100644 --- a/src/northbridge/intel/broadwell/acpi.c +++ b/src/northbridge/intel/broadwell/acpi.c @@ -12,7 +12,7 @@ static unsigned long acpi_fill_dmar(unsigned long current) { - struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD); + struct device *const igfx_dev = pcidev_on_root(2, 0); const u32 gfxvtbar = mchbar_read32(GFXVTBAR) & ~0xfff; const u32 vtvc0bar = mchbar_read32(VTVC0BAR) & ~0xfff; const bool gfxvten = mchbar_read32(GFXVTBAR) & 0x1;