aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2016-12-03 11:46:54 -0500
committerDavid S. Miller <davem@davemloft.net>2016-12-03 12:29:53 -0500
commit2745529ac7358fdac72e6b388da2e934bd9da82c (patch)
tree245bb05b1a18189c5a5212db914c70a636d8267a /drivers/net/wireless
parentab17cb1fea82b346bdecd4f2d7f0e84e80f847af (diff)
parent8dc0f265d39a3933f4c1f846c7c694f12a2ab88a (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Couple conflicts resolved here: 1) In the MACB driver, a bug fix to properly initialize the RX tail pointer properly overlapped with some changes to support variable sized rings. 2) In XGBE we had a "CONFIG_PM" --> "CONFIG_PM_SLEEP" fix overlapping with a reorganization of the driver to support ACPI, OF, as well as PCI variants of the chip. 3) In 'net' we had several probe error path bug fixes to the stmmac driver, meanwhile a lot of this code was cleaned up and reorganized in 'net-next'. 4) The cls_flower classifier obtained a helper function in 'net-next' called __fl_delete() and this overlapped with Daniel Borkamann's bug fix to use RCU for object destruction in 'net'. It also overlapped with Jiri's change to guard the rhashtable_remove_fast() call with a check against tc_skip_sw(). 5) In mlx4, a revert bug fix in 'net' overlapped with some unrelated changes in 'net-next'. 6) In geneve, a stale header pointer after pskb_expand_head() bug fix in 'net' overlapped with a large reorganization of the same code in 'net-next'. Since the 'net-next' code no longer had the bug in question, there was nothing to do other than to simply take the 'net-next' hunks. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/marvell/mwifiex/cfg80211.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/cfg80211.c b/drivers/net/wireless/marvell/mwifiex/cfg80211.c
index a7d359e9f378..145cc4b5103b 100644
--- a/drivers/net/wireless/marvell/mwifiex/cfg80211.c
+++ b/drivers/net/wireless/marvell/mwifiex/cfg80211.c
@@ -2238,8 +2238,9 @@ done:
2238 is_scanning_required = 1; 2238 is_scanning_required = 1;
2239 } else { 2239 } else {
2240 mwifiex_dbg(priv->adapter, MSG, 2240 mwifiex_dbg(priv->adapter, MSG,
2241 "info: trying to associate to '%s' bssid %pM\n", 2241 "info: trying to associate to '%.*s' bssid %pM\n",
2242 (char *)req_ssid.ssid, bss->bssid); 2242 req_ssid.ssid_len, (char *)req_ssid.ssid,
2243 bss->bssid);
2243 memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN); 2244 memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
2244 break; 2245 break;
2245 } 2246 }
@@ -2299,8 +2300,8 @@ mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
2299 } 2300 }
2300 2301
2301 mwifiex_dbg(adapter, INFO, 2302 mwifiex_dbg(adapter, INFO,
2302 "info: Trying to associate to %s and bssid %pM\n", 2303 "info: Trying to associate to %.*s and bssid %pM\n",
2303 (char *)sme->ssid, sme->bssid); 2304 (int)sme->ssid_len, (char *)sme->ssid, sme->bssid);
2304 2305
2305 if (!mwifiex_stop_bg_scan(priv)) 2306 if (!mwifiex_stop_bg_scan(priv))
2306 cfg80211_sched_scan_stopped_rtnl(priv->wdev.wiphy); 2307 cfg80211_sched_scan_stopped_rtnl(priv->wdev.wiphy);
@@ -2433,8 +2434,8 @@ mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2433 } 2434 }
2434 2435
2435 mwifiex_dbg(priv->adapter, MSG, 2436 mwifiex_dbg(priv->adapter, MSG,
2436 "info: trying to join to %s and bssid %pM\n", 2437 "info: trying to join to %.*s and bssid %pM\n",
2437 (char *)params->ssid, params->bssid); 2438 params->ssid_len, (char *)params->ssid, params->bssid);
2438 2439
2439 mwifiex_set_ibss_params(priv, params); 2440 mwifiex_set_ibss_params(priv, params);
2440 2441