Marc Jones has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45269 )
Change subject: xeon_sp: Fix skx uncore.asl _SB namespace issue ......................................................................
xeon_sp: Fix skx uncore.asl _SB namespace issue
The skx uncore acpi scope was missing the \ on _SB causing the uncore IRQs to not be in the namespace. This addresses ACPI uncore IRQ routing issues. This was found preparing skx acpi to match cpx acpi for merging in the future.
Change-Id: I799042babbe60287e5e4ec60b21c08d57ccda04b Signed-off-by: Marc Jones marcjones@sysproconsulting.com --- M src/soc/intel/xeon_sp/skx/acpi/uncore.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/45269/1
diff --git a/src/soc/intel/xeon_sp/skx/acpi/uncore.asl b/src/soc/intel/xeon_sp/skx/acpi/uncore.asl index 498a997..c6c6576 100644 --- a/src/soc/intel/xeon_sp/skx/acpi/uncore.asl +++ b/src/soc/intel/xeon_sp/skx/acpi/uncore.asl @@ -25,7 +25,7 @@ } }
-Scope (_SB) +Scope (_SB) { #include "pci_irq.asl" #include "uncore_irq.asl"