Commit 9fcce61c0eddbe21f42cb47bd5a366a6eb7956ce

Authored by Rafał Miłecki
Committed by John W. Linville
1 parent 7cc5eb629c

ssb: update list of devices supporting multiple 80211 cores

Some of the BCM43xx chips contain cores that are attached to the SSB, but are
inactive as they do not connect to the external environment. These must not be
registered. Several of these types are handled in driver ssb; however, the
specific case of an inactive 802.11 cores is now treated in b43 and b43legacy.
Although the current setup works, this minor change will place all such
workarounds in ssb, and simplify the code in drivers b43 and b43legacy.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Tested-by: Larry Finger <Larry.Finger@lwfinger.net>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

Showing 1 changed file with 4 additions and 1 deletions Side-by-side Diff

... ... @@ -258,7 +258,10 @@
258 258 #ifdef CONFIG_SSB_PCIHOST
259 259 if (bus->bustype == SSB_BUSTYPE_PCI) {
260 260 if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM &&
261   - bus->host_pci->device == 0x4324)
  261 + ((bus->host_pci->device == 0x4313) ||
  262 + (bus->host_pci->device == 0x431A) ||
  263 + (bus->host_pci->device == 0x4321) ||
  264 + (bus->host_pci->device == 0x4324)))
262 265 return 1;
263 266 }
264 267 #endif /* CONFIG_SSB_PCIHOST */