Attention is currently required from: Angel Pons.
Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/79116?usp=email )
Change subject: nb/intel/sandybridge/pcie: drop unneeded HAVE_ACPI_TABLES guards ......................................................................
nb/intel/sandybridge/pcie: drop unneeded HAVE_ACPI_TABLES guards
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I1e8c8b3e3672d1589a5910753986e4033d2ce766 --- M src/northbridge/intel/sandybridge/pcie.c 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/16/79116/1
diff --git a/src/northbridge/intel/sandybridge/pcie.c b/src/northbridge/intel/sandybridge/pcie.c index deb50b9..10aa283 100644 --- a/src/northbridge/intel/sandybridge/pcie.c +++ b/src/northbridge/intel/sandybridge/pcie.c @@ -6,7 +6,6 @@ #include <device/pci_ids.h> #include <assert.h>
-#if CONFIG(HAVE_ACPI_TABLES) static const char *pcie_acpi_name(const struct device *dev) { assert(dev); @@ -41,7 +40,6 @@
return NULL; } -#endif
struct device_operations sandybridge_nb_pcie_rp_ops = { .read_resources = pci_bus_read_resources, @@ -51,7 +49,5 @@ .reset_bus = pci_bus_reset, .init = pci_dev_init, .ops_pci = &pci_dev_ops_pci, -#if CONFIG(HAVE_ACPI_TABLES) .acpi_name = pcie_acpi_name, -#endif };