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 #include -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)