aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bcma/host_pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/bcma/host_pci.c')
-rw-r--r--drivers/bcma/host_pci.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/bcma/host_pci.c b/drivers/bcma/host_pci.c
index a355e63a3838..6fb98b53533f 100644
--- a/drivers/bcma/host_pci.c
+++ b/drivers/bcma/host_pci.c
@@ -188,8 +188,11 @@ static int bcma_host_pci_probe(struct pci_dev *dev,
188 pci_write_config_dword(dev, 0x40, val & 0xffff00ff); 188 pci_write_config_dword(dev, 0x40, val & 0xffff00ff);
189 189
190 /* SSB needed additional powering up, do we have any AMBA PCI cards? */ 190 /* SSB needed additional powering up, do we have any AMBA PCI cards? */
191 if (!pci_is_pcie(dev)) 191 if (!pci_is_pcie(dev)) {
192 bcma_err(bus, "PCI card detected, report problems.\n"); 192 bcma_err(bus, "PCI card detected, they are not supported.\n");
193 err = -ENXIO;
194 goto err_pci_release_regions;
195 }
193 196
194 /* Map MMIO */ 197 /* Map MMIO */
195 err = -ENOMEM; 198 err = -ENOMEM;
@@ -269,6 +272,7 @@ static SIMPLE_DEV_PM_OPS(bcma_pm_ops, bcma_host_pci_suspend,
269 272
270static DEFINE_PCI_DEVICE_TABLE(bcma_pci_bridge_tbl) = { 273static DEFINE_PCI_DEVICE_TABLE(bcma_pci_bridge_tbl) = {
271 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x0576) }, 274 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x0576) },
275 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4313) },
272 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 43224) }, 276 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 43224) },
273 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4331) }, 277 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4331) },
274 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4353) }, 278 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4353) },