summaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2021-02-22 18:27:05 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-24 11:28:01 +0000
commit522b39e757d53ec0dcf955acab508bd5ae27ed7a (patch)
treed1445ffa0565fc86914739c1d7d5d7c93590da71 /src/northbridge
parent291b58f06e4d9472fa2b8b8ace5b7829fe625d45 (diff)
downloadcoreboot-522b39e757d53ec0dcf955acab508bd5ae27ed7a.tar.xz
nb/intel/sandybridge/pcie.c: remove disable NOP
The .disable function pointer is only referenced inside set_vga_bridge_bits() and is used to unset VGA decoding on the internal GFX device. Change-Id: I6888b08ac11ba2431601fa179d063cee0bb93370 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51007 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/sandybridge/pcie.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/northbridge/intel/sandybridge/pcie.c b/src/northbridge/intel/sandybridge/pcie.c
index d0b7fd5820..36e9f26c6a 100644
--- a/src/northbridge/intel/sandybridge/pcie.c
+++ b/src/northbridge/intel/sandybridge/pcie.c
@@ -7,12 +7,6 @@
#include <device/pci_ids.h>
#include <assert.h>
-static void pcie_disable(struct device *dev)
-{
- printk(BIOS_INFO, "%s: Disabling device\n", dev_path(dev));
- dev->enabled = 0;
-}
-
#if CONFIG(HAVE_ACPI_TABLES)
static const char *pcie_acpi_name(const struct device *dev)
{
@@ -56,7 +50,6 @@ static struct device_operations device_ops = {
.enable_resources = pci_bus_enable_resources,
.scan_bus = pciexp_scan_bridge,
.reset_bus = pci_bus_reset,
- .disable = pcie_disable,
.init = pci_dev_init,
.ops_pci = &pci_dev_ops_pci,
#if CONFIG(HAVE_ACPI_TABLES)