Nicholas Chin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/82601?usp=email )
Change subject: util/autoport: Clean up header files in generated files ......................................................................
util/autoport: Clean up header files in generated files
Remove header files that no longer exist, or are unnecessary.
- early_init.c: Remove raminit_native.h, which was deleted in commit 0f8cd41be1fe (nb/intel/sandybridge: Drop raminit_native.h) - mainboard.c: Remove southbridge/intel/bd82x6x/pch.h as it is unused. This was previously used to configure a few registers in SPIBAR, but these have since been moved to PCH code and the devicetree.
Change-Id: I904c95394b4fea73b4990342e647595b5f10335f Signed-off-by: Nicholas Chin nic.c3.14@gmail.com --- M util/autoport/bd82x6x.go 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/82601/1
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go index 76411e7..271e592 100644 --- a/util/autoport/bd82x6x.go +++ b/util/autoport/bd82x6x.go @@ -194,9 +194,6 @@ Value: "\_SB.PCI0.GFX0.DECB", })
- /* SPI init */ - MainboardIncludes = append(MainboardIncludes, "southbridge/intel/bd82x6x/pch.h") - FADT := ctx.InfoSource.GetACPI()["FACP"]
pcieHotplugMap := "{ " @@ -297,7 +294,6 @@ sb.WriteString(` #include <bootblock_common.h> #include <device/pci_ops.h> -#include <northbridge/intel/sandybridge/raminit_native.h> #include <southbridge/intel/bd82x6x/pch.h>
`)