diff --git a/[refs] b/[refs] index 5e65dace1ada..79fce37cafd6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 750de29109770f6b50daecc4c44aaa50a9e0075b +refs/heads/master: 6b740aaa005474a7b135d3c554b9295c73eaab95 diff --git a/trunk/drivers/ssb/scan.c b/trunk/drivers/ssb/scan.c index ee079ab9fb28..5a0985d4ce15 100644 --- a/trunk/drivers/ssb/scan.c +++ b/trunk/drivers/ssb/scan.c @@ -405,10 +405,10 @@ int ssb_bus_scan(struct ssb_bus *bus, /* Ignore PCI cores on PCI-E cards. * Ignore PCI-E cores on PCI cards. */ if (dev->id.coreid == SSB_DEV_PCI) { - if (bus->host_pci->is_pcie) + if (pci_is_pcie(bus->host_pci)) continue; } else { - if (!bus->host_pci->is_pcie) + if (!pci_is_pcie(bus->host_pci)) continue; } }