diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-01-05 16:06:25 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-05 16:06:25 -0500 |
commit | c96e96354a6c9456cdf1f150eca504e2ea35301e (patch) | |
tree | 751bec601fb8152116b8e31e0f1f83d687a37d6f /drivers/ssb/scan.c | |
parent | dbbe68bb12b34f3e450da7a73c20e6fa1f85d63a (diff) | |
parent | 33af88138b859f515b365a074e0a014d7cdbf846 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts:
net/bluetooth/Makefile
Diffstat (limited to 'drivers/ssb/scan.c')
-rw-r--r-- | drivers/ssb/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ssb/scan.c b/drivers/ssb/scan.c index ee079ab9fb28..5a0985d4ce15 100644 --- a/drivers/ssb/scan.c +++ b/drivers/ssb/scan.c | |||
@@ -405,10 +405,10 @@ int ssb_bus_scan(struct ssb_bus *bus, | |||
405 | /* Ignore PCI cores on PCI-E cards. | 405 | /* Ignore PCI cores on PCI-E cards. |
406 | * Ignore PCI-E cores on PCI cards. */ | 406 | * Ignore PCI-E cores on PCI cards. */ |
407 | if (dev->id.coreid == SSB_DEV_PCI) { | 407 | if (dev->id.coreid == SSB_DEV_PCI) { |
408 | if (bus->host_pci->is_pcie) | 408 | if (pci_is_pcie(bus->host_pci)) |
409 | continue; | 409 | continue; |
410 | } else { | 410 | } else { |
411 | if (!bus->host_pci->is_pcie) | 411 | if (!pci_is_pcie(bus->host_pci)) |
412 | continue; | 412 | continue; |
413 | } | 413 | } |
414 | } | 414 | } |