aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/baytrail/pcie.c6
-rw-r--r--src/soc/intel/braswell/pcie.c6
2 files changed, 2 insertions, 10 deletions
diff --git a/src/soc/intel/baytrail/pcie.c b/src/soc/intel/baytrail/pcie.c
index bac8d58559..c257ce0f3e 100644
--- a/src/soc/intel/baytrail/pcie.c
+++ b/src/soc/intel/baytrail/pcie.c
@@ -227,10 +227,6 @@ static void byt_pciexp_scan_bridge(struct device *dev)
do_pci_scan_bridge(dev, pciexp_scan_bus);
}
-static struct pci_operations pcie_root_ops = {
- .set_subsystem = pci_dev_set_subsystem,
-};
-
static struct device_operations device_ops = {
.read_resources = pci_bus_read_resources,
.set_resources = pci_dev_set_resources,
@@ -238,7 +234,7 @@ static struct device_operations device_ops = {
.init = byt_pcie_init,
.scan_bus = byt_pciexp_scan_bridge,
.enable = byt_pcie_enable,
- .ops_pci = &pcie_root_ops,
+ .ops_pci = &pci_dev_ops_pci,
};
static const unsigned short pci_device_ids[] = {
diff --git a/src/soc/intel/braswell/pcie.c b/src/soc/intel/braswell/pcie.c
index d8e423b2ff..c0cf5e4b98 100644
--- a/src/soc/intel/braswell/pcie.c
+++ b/src/soc/intel/braswell/pcie.c
@@ -142,10 +142,6 @@ static void pcie_enable(struct device *dev)
southcluster_enable_dev(dev);
}
-static struct pci_operations pcie_root_ops = {
- .set_subsystem = pci_dev_set_subsystem,
-};
-
static struct device_operations device_ops = {
.read_resources = pci_bus_read_resources,
.set_resources = pci_dev_set_resources,
@@ -153,7 +149,7 @@ static struct device_operations device_ops = {
.init = pcie_init,
.scan_bus = pciexp_scan_bridge,
.enable = pcie_enable,
- .ops_pci = &pcie_root_ops,
+ .ops_pci = &pci_dev_ops_pci,
};
static const unsigned short pci_device_ids[] = {