diff options
author | David S. Miller <davem@davemloft.net> | 2019-02-06 12:36:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-06 12:36:36 -0500 |
commit | 5661f29ade245afe85c14f642e5043737f53015f (patch) | |
tree | 8d4bbc9063c7fcd106d0e5b0c81627790fc0657d /include/linux/bcma | |
parent | bfbae2eafe059cd4f222aee426da7d870e3cd33c (diff) | |
parent | 030b43671ae88f827a415ad35700705ffc10d10d (diff) |
Merge tag 'wireless-drivers-next-for-davem-2019-02-06' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says:
====================
wireless-drivers-next patches for 5.1
First set of patches for 5.1. Lots of new features in various drivers
but nothing really special standing out.
Major changes:
brcmfmac
* DMI nvram filename quirk for PoV TAB-P1006W-232 tablet
rsi
* support for hardware scan offload
iwlwifi
* support for Target Wakeup Time (TWT) -- a feature that allows the AP
to specify when individual stations can access the medium
* support for mac80211 AMSDU handling
* some new PCI IDs
* relicense the pcie submodule to dual GPL/BSD
* reworked the TOF/CSI (channel estimation matrix) implementation
* Some product name updates in the human-readable strings
mt76
* energy detect regulatory compliance fixes
* preparation for MT7603 support
* channel switch announcement support
mwifiex
* support for sd8977 chipset
qtnfmac
* support for 4addr mode
* convert to SPDX license identifiers
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/bcma')
-rw-r--r-- | include/linux/bcma/bcma.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index ef61f3607e99..60b94b944e9f 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
@@ -332,6 +332,8 @@ extern int bcma_arch_register_fallback_sprom( | |||
332 | struct ssb_sprom *out)); | 332 | struct ssb_sprom *out)); |
333 | 333 | ||
334 | struct bcma_bus { | 334 | struct bcma_bus { |
335 | struct device *dev; | ||
336 | |||
335 | /* The MMIO area. */ | 337 | /* The MMIO area. */ |
336 | void __iomem *mmio; | 338 | void __iomem *mmio; |
337 | 339 | ||
@@ -339,14 +341,7 @@ struct bcma_bus { | |||
339 | 341 | ||
340 | enum bcma_hosttype hosttype; | 342 | enum bcma_hosttype hosttype; |
341 | bool host_is_pcie2; /* Used for BCMA_HOSTTYPE_PCI only */ | 343 | bool host_is_pcie2; /* Used for BCMA_HOSTTYPE_PCI only */ |
342 | union { | 344 | struct pci_dev *host_pci; /* PCI bus pointer (BCMA_HOSTTYPE_PCI only) */ |
343 | /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */ | ||
344 | struct pci_dev *host_pci; | ||
345 | /* Pointer to the SDIO device (only for BCMA_HOSTTYPE_SDIO) */ | ||
346 | struct sdio_func *host_sdio; | ||
347 | /* Pointer to platform device (only for BCMA_HOSTTYPE_SOC) */ | ||
348 | struct platform_device *host_pdev; | ||
349 | }; | ||
350 | 345 | ||
351 | struct bcma_chipinfo chipinfo; | 346 | struct bcma_chipinfo chipinfo; |
352 | 347 | ||