diff options
author | David S. Miller <davem@davemloft.net> | 2015-08-20 23:13:25 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-20 23:13:25 +0200 |
commit | ef09242f3997f5fa063bcfa918d3ce4c4485376c (patch) | |
tree | dbbf663ff83168d066de7a447926ef8974a51fee /drivers/net/wireless/ath/debug.c | |
parent | ipv4: Make fib_encap_match static (diff) | |
parent | Merge tag 'iwlwifi-next-for-kalle-2015-08-18' of https://git.kernel.org/pub/s... (diff) | |
download | linux-ef09242f3997f5fa063bcfa918d3ce4c4485376c.tar.xz linux-ef09242f3997f5fa063bcfa918d3ce4c4485376c.zip |
Merge tag 'wireless-drivers-next-for-davem-2015-08-19' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says:
====================
Major changes:
ath10k:
* add support for qca99x0 family of devices
* improve performance of tx_lock
* add support for raw mode (802.11 frame format) and software crypto
engine enabled via a module parameter
ath9k:
* add fast-xmit support
wil6210:
* implement TSO support
* support bootloader v1 and onwards
iwlwifi:
* Deprecate -10.ucode
* Clean ups towards multiple Rx queues
* Add support for longer CMD IDs. This will be required by new
firmwares since we are getting close to the u8 limit.
* bugfixes for the D0i3 power state
* Add basic support for FTM
* polish the Miracast operation
* fix a few power consumption issues
* scan cleanup
* fixes for D0i3 system state
* add paging for devices that support it
* add again the new RBD allocation model
* add more options to the firmware debug system
* add support for frag SKBs in Tx
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/ath/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/debug.c b/drivers/net/wireless/ath/debug.c index 508eccf5d982..d59d83e0ce4b 100644 --- a/drivers/net/wireless/ath/debug.c +++ b/drivers/net/wireless/ath/debug.c @@ -40,6 +40,8 @@ const char *ath_opmode_to_string(enum nl80211_iftype opmode) return "P2P-CLIENT"; case NL80211_IFTYPE_P2P_GO: return "P2P-GO"; + case NL80211_IFTYPE_OCB: + return "OCB"; default: return "UNKNOWN"; } |